public static enum AepEngine.ReplicationPolicy extends Enum<AepEngine.ReplicationPolicy>
Enum Constant and Description |
---|
Asynchronous
With this replication policy, message/state is replicated
without soliciting an acknowledgement from the backup
engine cluster instances.
|
Pipelined
With this replication policy, message/state is replicated
soliciting acknowledgements from the backup engine cluster
instance(s) but inbound message processing is not blocked
waiting for the acknowledgement to be received.
|
Modifier and Type | Method and Description |
---|---|
static AepEngine.ReplicationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AepEngine.ReplicationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AepEngine.ReplicationPolicy Asynchronous
public static final AepEngine.ReplicationPolicy Pipelined
public static AepEngine.ReplicationPolicy[] values()
for (AepEngine.ReplicationPolicy c : AepEngine.ReplicationPolicy.values()) System.out.println(c);
public static AepEngine.ReplicationPolicy 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.