Package com.hazelcast.config
Enum WanQueueFullBehavior
- java.lang.Object
-
- java.lang.Enum<WanQueueFullBehavior>
-
- com.hazelcast.config.WanQueueFullBehavior
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WanQueueFullBehavior>
public enum WanQueueFullBehavior extends java.lang.Enum<WanQueueFullBehavior>
Determines the behavior of WAN replication impl. In case of WAN event queues are full.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISCARD_AFTER_MUTATION
Instruct WAN replication implementation to drop new events when WAN event queues are full.THROW_EXCEPTION
Instruct WAN replication implementation to throw an exception and doesn't allow further processing.THROW_EXCEPTION_ONLY_IF_REPLICATION_ACTIVE
Similar toTHROW_EXCEPTION
but only throws exception when WAN replication is active.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WanQueueFullBehavior
getByType(int id)
Returns the WANQueueFullBehavior as an enum.int
getId()
Gets the ID for the givenWanQueueFullBehavior
.static WanQueueFullBehavior
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WanQueueFullBehavior[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISCARD_AFTER_MUTATION
public static final WanQueueFullBehavior DISCARD_AFTER_MUTATION
Instruct WAN replication implementation to drop new events when WAN event queues are full.
-
THROW_EXCEPTION
public static final WanQueueFullBehavior THROW_EXCEPTION
Instruct WAN replication implementation to throw an exception and doesn't allow further processing.
-
THROW_EXCEPTION_ONLY_IF_REPLICATION_ACTIVE
public static final WanQueueFullBehavior THROW_EXCEPTION_ONLY_IF_REPLICATION_ACTIVE
Similar toTHROW_EXCEPTION
but only throws exception when WAN replication is active. Discards the new events if WAN replication is stopped.
-
-
Method Detail
-
values
public static WanQueueFullBehavior[] 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 (WanQueueFullBehavior c : WanQueueFullBehavior.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WanQueueFullBehavior valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getId
public int getId()
Gets the ID for the givenWanQueueFullBehavior
.The reason this ID is used instead of an the ordinal value is that the ordinal value is more prone to changes due to reordering.
- Returns:
- the ID
-
getByType
public static WanQueueFullBehavior getByType(int id)
Returns the WANQueueFullBehavior as an enum.- Returns:
- the WANQueueFullBehavior as an enum
-
-