Enum Class GatewaySender.OrderPolicy

java.lang.Object
java.lang.Enum<GatewaySender.OrderPolicy>
org.apache.geode.cache.wan.GatewaySender.OrderPolicy
All Implemented Interfaces:
Serializable, Comparable<GatewaySender.OrderPolicy>, Constable
Enclosing interface:
GatewaySender

public static enum GatewaySender.OrderPolicy extends Enum<GatewaySender.OrderPolicy>
The order policy. This enum is applicable only when concurrency-level is > 1.
Since:
GemFire 6.5.1
  • Enum Constant Details

    • THREAD

      public static final GatewaySender.OrderPolicy THREAD
      Indicates that events will be parallelized based on the event's originating member and thread
    • KEY

      public static final GatewaySender.OrderPolicy KEY
      Indicates that events will be parallelized based on the event's key
    • PARTITION

      public static final GatewaySender.OrderPolicy 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
  • Method Details

    • values

      public static GatewaySender.OrderPolicy[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GatewaySender.OrderPolicy valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null