public enum QueueFullPolicy extends Enum<QueueFullPolicy>
Enum Constant and Description |
---|
AllOrException
GGC will either deliver messages to all subscribed targets, or it will deliver to none and return exception.
|
BestEffort
GGC will deliver messages to as many targets as possible.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static QueueFullPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueFullPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueFullPolicy BestEffort
public static final QueueFullPolicy AllOrException
public static QueueFullPolicy[] values()
for (QueueFullPolicy c : QueueFullPolicy.values()) System.out.println(c);
public static QueueFullPolicy 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 nullpublic String toString()
toString
in class Enum<QueueFullPolicy>