Package org.elasticsearch.index.reindex
Interface SuccessfullyProcessed
-
- All Known Implementing Classes:
BulkByScrollTask.Status
,WorkerBulkByScrollTaskState
public interface SuccessfullyProcessed
Implemented byWorkerBulkByScrollTaskState
andBulkByScrollTask.Status
to consistently implementgetSuccessfullyProcessed()
.
-
-
Method Summary
Modifier and Type Method Description long
getCreated()
Count of documents created.long
getDeleted()
Count of successful delete operations.default long
getSuccessfullyProcessed()
Total number of successfully processed documents.long
getUpdated()
Count of documents updated.
-
-
-
Method Detail
-
getSuccessfullyProcessed
default long getSuccessfullyProcessed()
Total number of successfully processed documents.
-
getUpdated
long getUpdated()
Count of documents updated.
-
getCreated
long getCreated()
Count of documents created.
-
getDeleted
long getDeleted()
Count of successful delete operations.
-
-