Uses of Class
org.hibernate.search.engine.backend.work.execution.DocumentCommitStrategy
-
-
Uses of DocumentCommitStrategy in org.hibernate.search.engine.backend.index.spi
Methods in org.hibernate.search.engine.backend.index.spi with parameters of type DocumentCommitStrategy Modifier and Type Method Description IndexIndexingPlan
IndexManagerImplementor. createIndexingPlan(BackendSessionContext sessionContext, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
-
Uses of DocumentCommitStrategy in org.hibernate.search.engine.backend.work.execution
Methods in org.hibernate.search.engine.backend.work.execution that return DocumentCommitStrategy Modifier and Type Method Description static DocumentCommitStrategy
DocumentCommitStrategy. valueOf(String name)
Returns the enum constant of this type with the specified name.static DocumentCommitStrategy[]
DocumentCommitStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of DocumentCommitStrategy in org.hibernate.search.engine.backend.work.execution.spi
Methods in org.hibernate.search.engine.backend.work.execution.spi with parameters of type DocumentCommitStrategy 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.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.CompletableFuture<?>
IndexIndexer. delete(DocumentReferenceProvider referenceProvider, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Delete a document from the index. -
Uses of DocumentCommitStrategy in org.hibernate.search.engine.mapper.mapping.spi
Methods in org.hibernate.search.engine.mapper.mapping.spi with parameters of type DocumentCommitStrategy Modifier and Type Method Description IndexIndexingPlan
MappedIndexManager. createIndexingPlan(BackendSessionContext sessionContext, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
-
Uses of DocumentCommitStrategy in org.hibernate.search.mapper.orm.automaticindexing.session
Methods in org.hibernate.search.mapper.orm.automaticindexing.session with parameters of type DocumentCommitStrategy Modifier and Type Method Description void
AutomaticIndexingSynchronizationConfigurationContext. documentCommitStrategy(DocumentCommitStrategy strategy)
-
Uses of DocumentCommitStrategy in org.hibernate.search.mapper.pojo.mapping.spi
Methods in org.hibernate.search.mapper.pojo.mapping.spi with parameters of type DocumentCommitStrategy Modifier and Type Method Description PojoIndexingQueueEventProcessingPlan
PojoMappingDelegate. createEventProcessingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy, PojoIndexingQueueEventSendingPlan sendingPlan)
PojoIndexingPlan
AbstractPojoMappingImplementor. createIndexingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
PojoIndexingPlan
PojoMappingDelegate. createIndexingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
PojoIndexingQueueEventProcessingPlan
AbstractPojoMappingImplementor. createIndexingQueueEventProcessingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy, PojoIndexingQueueEventSendingPlan sendingPlan)
-
Uses of DocumentCommitStrategy in org.hibernate.search.mapper.pojo.session.spi
Methods in org.hibernate.search.mapper.pojo.session.spi with parameters of type DocumentCommitStrategy Modifier and Type Method Description PojoIndexingPlan
PojoSearchSessionMappingContext. createIndexingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
PojoIndexingQueueEventProcessingPlan
PojoSearchSessionMappingContext. createIndexingQueueEventProcessingPlan(PojoWorkSessionContext context, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy, PojoIndexingQueueEventSendingPlan sendingPlan)
-
Uses of DocumentCommitStrategy in org.hibernate.search.mapper.pojo.work.spi
Methods in org.hibernate.search.mapper.pojo.work.spi with parameters of type DocumentCommitStrategy Modifier and Type Method Description CompletableFuture<?>
PojoIndexer. add(PojoRawTypeIdentifier<?> typeIdentifier, Object providedId, DocumentRoutesDescriptor providedRoutes, Object entity, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Add an entity to the index, assuming that the entity is absent from the index.CompletableFuture<?>
PojoIndexer. addOrUpdate(PojoRawTypeIdentifier<?> typeIdentifier, Object providedId, DocumentRoutesDescriptor providedRoutes, Object entity, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Update an entity in the index, or add it if it's absent from the index.CompletableFuture<?>
PojoIndexer. delete(PojoRawTypeIdentifier<?> typeIdentifier, Object providedId, DocumentRoutesDescriptor providedRoutes, Object entity, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Delete an entity from the index.CompletableFuture<?>
PojoIndexer. delete(PojoRawTypeIdentifier<?> typeIdentifier, Object providedId, DocumentRoutesDescriptor providedRoutes, DocumentCommitStrategy commitStrategy, DocumentRefreshStrategy refreshStrategy)
Purge an entity from the index.
-