Package org.elasticsearch.index.reindex
Interface SuccessfullyProcessed
-
- All Known Implementing Classes:
BulkByScrollTask.Status,WorkerBulkByScrollTaskState
public interface SuccessfullyProcessedImplemented byWorkerBulkByScrollTaskStateandBulkByScrollTask.Statusto consistently implementgetSuccessfullyProcessed().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description longgetCreated()Count of documents created.longgetDeleted()Count of successful delete operations.default longgetSuccessfullyProcessed()Total number of successfully processed documents.longgetUpdated()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.
-
-