Enum 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>
- Enclosing interface:
- Journal
public static enum Journal.JournalState extends Enum<Journal.JournalState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOADEDThe journal is fully operational.STARTEDThe journal has some fields initialized and services running.STOPPEDSYNCINGWhen a replicating server is still not synchronized with its live.SYNCING_UP_TO_DATEJournal is being used by a replicating server which is up-to-date with its live.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Journal.JournalStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Journal.JournalState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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. SeeLOADED.
-
SYNCING
public static final Journal.JournalState SYNCING
When a replicating server is still not synchronized with its live. So if the live stops, the backup 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 live. That means that if the live stops, the backup 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 live.
-
-
Method Detail
-
values
public static Journal.JournalState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Journal.JournalState c : Journal.JournalState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Journal.JournalState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-