public static enum AepEngine.State extends Enum<AepEngine.State>
Enum Constant and Description |
---|
Init
Indicates an engine has been created but not started.
|
Started
Indicates an engine has been started and is operational.
|
Starting
Indicates an engine is being started.
|
Stopped
Indicates that an engine has been stopped.
|
Stopping
Indicates an engine is being stopped.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.State Init
public static final AepEngine.State Starting
public static final AepEngine.State Started
A started engine does not indicate that its messaging has
been started. Whether an engine's messaging has been started
or not is indicated by its AepEngine.MessagingState
. For example,
a backup cluster instance may be started but will wait on
a role change to primary to start its messaging.
public static final AepEngine.State Stopping
public static final AepEngine.State Stopped
public static AepEngine.State[] values()
for (AepEngine.State c : AepEngine.State.values()) System.out.println(c);
public static AepEngine.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Neeve Research, LLC. All Rights Reserved.