|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Gateway.OrderPolicy>
com.gemstone.gemfire.cache.util.Gateway.OrderPolicy
public static enum Gateway.OrderPolicy
The order policy. This enum is applicable only when concurrency-level is > 1.
| Enum Constant Summary | |
|---|---|
KEY
Indicates that events will be parallelized based on the event's key |
|
PARTITION
Indicates that events will be parallelized based on the event's: - partition (using the PartitionResolver) in the case of a partitioned region event - key in the case of a replicated region event |
|
THREAD
Indicates that events will be parallelized based on the event's originating member and thread |
|
| Method Summary | |
|---|---|
static Gateway.OrderPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Gateway.OrderPolicy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Gateway.OrderPolicy THREAD
public static final Gateway.OrderPolicy KEY
public static final Gateway.OrderPolicy PARTITION
| Method Detail |
|---|
public static Gateway.OrderPolicy[] values()
for (Gateway.OrderPolicy c : Gateway.OrderPolicy.values()) System.out.println(c);
public static Gateway.OrderPolicy valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
GemFire 7.0 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||