Package lumis.portal.bigdata
Interface IBatchIndexer
-
- All Superinterfaces:
AutoCloseable
,IBigDataIndexer
@StableMinor(version="14.0", sinceVersion="8.1") public interface IBatchIndexer extends IBigDataIndexer, AutoCloseable
Provides batch indexing operations. These operations may be asynchronous.
It is important to notice that bulk operations might not be atomic.
Once finished using an instance,close()
must be called.- Since:
- 8.1.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
- See Also:
IBigDataIndexer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Ends the bulk indexing operations.-
Methods inherited from interface lumis.portal.bigdata.IBigDataIndexer
addDocument, addOrUpdateDocument, deleteDocument, deleteDocumentsByFieldValue, deleteDocumentsByFieldValue, deleteDocumentsByQuery, updateDocumentsByQuerySync
-
-
-
-
Method Detail
-
close
void close()
Ends the bulk indexing operations. Once a bulk indexer is obtained, this method must be called to end it's operations.- Specified by:
close
in interfaceAutoCloseable
- Since:
- 8.1.0
-
-