Class AutomaticIndexingSynchronizationStrategyNames
- java.lang.Object
-
- org.hibernate.search.mapper.orm.automaticindexing.session.AutomaticIndexingSynchronizationStrategyNames
-
public final class AutomaticIndexingSynchronizationStrategyNames extends Object
The names of built-in automatic indexing synchronization strategies, accepted byHibernateOrmMapperSettings.AUTOMATIC_INDEXING_SYNCHRONIZATION_STRATEGY
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ASYNC
A strategy that only waits for index changes to be queued in the backend.static String
READ_SYNC
A strategy that waits for index changes to be queued and applied, forces a refresh, and waits for the refresh to complete.static String
SYNC
A strategy that waits for index changes to be queued and applied, forces a commit and a refresh, and waits for the commit and refresh to complete.static String
WRITE_SYNC
A strategy that waits for index changes to be queued and applied, forces a commit, and waits for the commit to complete.
-
-
-
Field Detail
-
ASYNC
public static final String ASYNC
A strategy that only waits for index changes to be queued in the backend.See the reference documentation for details.
- See Also:
- Constant Field Values
-
WRITE_SYNC
public static final String WRITE_SYNC
A strategy that waits for index changes to be queued and applied, forces a commit, and waits for the commit to complete.See the reference documentation for details.
- See Also:
- Constant Field Values
-
READ_SYNC
public static final String READ_SYNC
A strategy that waits for index changes to be queued and applied, forces a refresh, and waits for the refresh to complete.See the reference documentation for details.
- See Also:
- Constant Field Values
-
SYNC
public static final String SYNC
A strategy that waits for index changes to be queued and applied, forces a commit and a refresh, and waits for the commit and refresh to complete.See the reference documentation for details.
- See Also:
- Constant Field Values
-
-