Interface IndexerWorker
-
- All Superinterfaces:
java.lang.Runnable
- All Known Implementing Classes:
DefaultIndexerWorker
public interface IndexerWorker extends java.lang.Runnable
Worker that should be used for performing indexing operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
initialize(IndexerWorkerParameters workerParameters)
Initializes the worker.boolean
isInitialized()
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:
true
if the worker is initialized,false
otherwise
-
-