Interface IndexerWorker
-
- All Superinterfaces:
java.lang.Runnable
- All Known Implementing Classes:
DefaultIndexerWorker
public interface IndexerWorker extends java.lang.RunnableWorker that should be used for performing indexing operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitialize(IndexerWorkerParameters workerParameters)Initializes the worker.booleanisInitialized()Indicates if the worker is initialized and ready to run.
-
-
-
Method Detail
-
initialize
void initialize(IndexerWorkerParameters workerParameters)
Initializes the worker.- Parameters:
workerParameters- the worker parameters
-
isInitialized
boolean isInitialized()
Indicates if the worker is initialized and ready to run.- Returns:
trueif the worker is initialized,falseotherwise
-
-