public static enum AepEngine.HAPolicy extends Enum<AepEngine.HAPolicy>
Enum Constant and Description |
---|
EventSourcing
HA policy in which source events are processed in parallel
by all members in an engine cluster.
|
StateReplication
HA policy where source events are processed by the primary
and state changes triggered by the message processed are
replicated to other cluster members.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.HAPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.HAPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.HAPolicy EventSourcing
public static final AepEngine.HAPolicy StateReplication
This is the default HA policy
public static AepEngine.HAPolicy[] values()
for (AepEngine.HAPolicy c : AepEngine.HAPolicy.values()) System.out.println(c);
public static AepEngine.HAPolicy 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.