public enum WanAcknowledgeType extends Enum<WanAcknowledgeType>
| Enum Constant and Description |
|---|
ACK_ON_OPERATION_COMPLETE
Wait till the operation is complete on target cluster
|
ACK_ON_TRANSMIT
ACK when operation is invoked successfully on target cluster
|
| Modifier and Type | Method and Description |
|---|---|
static WanAcknowledgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WanAcknowledgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WanAcknowledgeType ACK_ON_TRANSMIT
public static final WanAcknowledgeType ACK_ON_OPERATION_COMPLETE
public static WanAcknowledgeType[] values()
for (WanAcknowledgeType c : WanAcknowledgeType.values()) System.out.println(c);
public static WanAcknowledgeType 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 © 2015 Hazelcast, Inc.. All Rights Reserved.