Interface SnIndexerBatchCallable
-
- All Superinterfaces:
java.util.concurrent.Callable<SnIndexerBatchResponse>
- All Known Implementing Classes:
DefaultSnIndexerBatchCallable
public interface SnIndexerBatchCallable extends java.util.concurrent.Callable<SnIndexerBatchResponse>
Callable for indexer batches.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIndexerBatchId()Returns the indexer batch id;voidinitialize(SnIndexerContext indexerContext, java.util.List<SnIndexerItemSourceOperation> indexerItemSourceOperations, java.lang.String indexerBatchId)Initializes the indexer batch runnable.
-
-
-
Method Detail
-
initialize
void initialize(SnIndexerContext indexerContext, java.util.List<SnIndexerItemSourceOperation> indexerItemSourceOperations, java.lang.String indexerBatchId)
Initializes the indexer batch runnable.- Parameters:
indexerContext- - the indexer contextindexerItemSourceOperations- - the indexer item source operationsindexerBatchId- - the indexer batch id
-
getIndexerBatchId
java.lang.String getIndexerBatchId()
Returns the indexer batch id;- Returns:
- the indexer batch id
-
-