Enum Class Journal.JournalState

java.lang.Object
java.lang.Enum<Journal.JournalState>
org.apache.activemq.artemis.core.journal.Journal.JournalState
All Implemented Interfaces:
Serializable, Comparable<Journal.JournalState>, Constable
Enclosing interface:
Journal

public static enum Journal.JournalState extends Enum<Journal.JournalState>
  • Enum Constant Details

    • STOPPED

      public static final Journal.JournalState STOPPED
    • STARTED

      public static final Journal.JournalState STARTED
      The journal has some fields initialized and services running. But it is not fully operational. See LOADED.
    • SYNCING

      public static final Journal.JournalState SYNCING
      When a replicating server is still not synchronized with its replica. So if the replicating server stops, the replica may not fail-over and will stop as well.
    • SYNCING_UP_TO_DATE

      public static final Journal.JournalState SYNCING_UP_TO_DATE
      Journal is being used by a replicating server which is up-to-date with its replica. That means that if the replicating server stops, the replica can fail-over.
    • LOADED

      public static final Journal.JournalState LOADED
      The journal is fully operational. This is the state the journal should be when its server is active.
  • Method Details

    • values

      public static Journal.JournalState[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Journal.JournalState valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null