Class AutomaticIndexingSynchronizationStrategyNames
- java.lang.Object
-
- org.hibernate.search.mapper.orm.automaticindexing.session.AutomaticIndexingSynchronizationStrategyNames
-
@Deprecated public final class AutomaticIndexingSynchronizationStrategyNames extends Object
Deprecated.The names of built-in automatic indexing synchronization strategies, accepted byHibernateOrmMapperSettings.AUTOMATIC_INDEXING_SYNCHRONIZATION_STRATEGY.
-
-
Field Summary
Fields Modifier and Type Field Description static StringASYNCDeprecated.A strategy that only waits for index changes to be queued in the backend.static StringREAD_SYNCDeprecated.A strategy that waits for index changes to be queued and applied, forces a refresh, and waits for the refresh to complete.static StringSYNCDeprecated.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 StringWRITE_SYNCDeprecated.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
Deprecated.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
Deprecated.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
Deprecated.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
Deprecated.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
-
-