Interface IndexQueueItemsService
-
- All Known Implementing Classes:
DefaultIndexQueueItemsService
public interface IndexQueueItemsService
Service providing information about number of items added and processed in the index queue.- Since:
- 8.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getQueueItemsAdded(IndexQueueType indexQueueType)
Returns the number of items added to the specified index queue.long
getQueueItemsProcessed(IndexQueueType indexQueueType)
Returns the number of items processed in the specified index queue.
-
-
-
Method Detail
-
getQueueItemsAdded
long getQueueItemsAdded(IndexQueueType indexQueueType)
Returns the number of items added to the specified index queue.- Parameters:
indexQueueType
- the type of index queue- Returns:
- the number of items added to the index queue
-
getQueueItemsProcessed
long getQueueItemsProcessed(IndexQueueType indexQueueType)
Returns the number of items processed in the specified index queue.- Parameters:
indexQueueType
- the type of index queue- Returns:
- the number of items processed in the index queue
-
-