Uses of Interface
org.hibernate.search.engine.backend.work.execution.spi.DocumentReferenceProvider
-
Packages that use DocumentReferenceProvider Package Description org.hibernate.search.engine.backend.work.execution.spi -
-
Uses of DocumentReferenceProvider in org.hibernate.search.engine.backend.work.execution.spi
Methods in org.hibernate.search.engine.backend.work.execution.spi with parameters of type DocumentReferenceProvider Modifier and Type Method Description CompletableFuture<?>
IndexIndexer. add(DocumentReferenceProvider referenceProvider, DocumentContributor documentContributor, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Add a document to the index, assuming that the document is absent from the index.void
IndexIndexingPlan. add(DocumentReferenceProvider documentReferenceProvider, DocumentContributor documentContributor)
Add a document to the index, assuming that the document is absent from the index.CompletableFuture<?>
IndexIndexer. addOrUpdate(DocumentReferenceProvider referenceProvider, DocumentContributor documentContributor, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Update a document in the index, or add it if it's absent from the index.void
IndexIndexingPlan. addOrUpdate(DocumentReferenceProvider documentReferenceProvider, DocumentContributor documentContributor)
Update a document in the index, or add it if it's absent from the index.CompletableFuture<?>
IndexIndexer. delete(DocumentReferenceProvider referenceProvider, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Delete a document from the index.void
IndexIndexingPlan. delete(DocumentReferenceProvider documentReferenceProvider)
Delete a document from the index.
-