Class IndexingPlanSynchronizationStrategyNames

java.lang.Object
org.hibernate.search.mapper.pojo.work.IndexingPlanSynchronizationStrategyNames

@Incubating public final class IndexingPlanSynchronizationStrategyNames extends Object
The names of built-in indexing plan synchronization strategies.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    A strategy that only waits for index changes to be queued in the backend.
    static final String
    A strategy that waits for index changes to be queued and applied, forces a refresh, and waits for the refresh to complete.
    static final String
    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 final String
    A strategy that waits for index changes to be queued and applied, forces a commit, and waits for the commit to complete.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • 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:
    • 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:
    • 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:
    • 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: