Interface IndexingWork<T>
-
- All Superinterfaces:
BulkableWork<T>,ElasticsearchWork
- All Known Subinterfaces:
SingleDocumentIndexingWork
- All Known Implementing Classes:
AbstractSingleDocumentIndexingWork,DeleteWork,IndexWork
public interface IndexingWork<T> extends BulkableWork<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetQueuingKey()-
Methods inherited from interface org.hibernate.search.backend.elasticsearch.work.impl.BulkableWork
getBulkableActionBody, getBulkableActionMetadata, getRefreshStrategy, handleBulkResult
-
-
-
-
Method Detail
-
getQueuingKey
String getQueuingKey()
- Returns:
- A string that will be used to route the work to a specific queue.
Never
null. Works that must be executed in the same relative order they were submitted in (i.e. works pertaining to the same document) should return the same string.
-
-