Package org.sakaiproject.search.api
Interface SearchStatus
-
public interface SearchStatusA search status object- Author:
- ieb
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCurrentWorker()the current operational worker performing an index, none if there is none actively indexingStringgetCurrentWorkerETC()The latest expected time of completion of the current workerStringgetLastLoad()Last time the index was loadedStringgetLoadTime()How long it tool to load the indexStringgetNDocuments()the number of documents in the index, including those marked as deletedStringgetPDocuments()get the number of documents pending to be indexed, including master items.ListgetWorkerNodes()A list of all worker nodes in the cluster
-
-
-
Method Detail
-
getLastLoad
String getLastLoad()
Last time the index was loaded- Returns:
-
getLoadTime
String getLoadTime()
How long it tool to load the index- Returns:
-
getCurrentWorker
String getCurrentWorker()
the current operational worker performing an index, none if there is none actively indexing- Returns:
-
getCurrentWorkerETC
String getCurrentWorkerETC()
The latest expected time of completion of the current worker- Returns:
-
getWorkerNodes
List getWorkerNodes()
A list of all worker nodes in the cluster- Returns:
-
getNDocuments
String getNDocuments()
the number of documents in the index, including those marked as deleted- Returns:
-
getPDocuments
String getPDocuments()
get the number of documents pending to be indexed, including master items.- Returns:
-
-