Package zmq

Enum Config

All Implemented Interfaces:
Serializable, Comparable<Config>, java.lang.constant.Constable

public enum Config extends Enum<Config>
  • Enum Constant Details

    • MESSAGE_PIPE_GRANULARITY

      public static final Config MESSAGE_PIPE_GRANULARITY
    • COMMAND_PIPE_GRANULARITY

      public static final Config COMMAND_PIPE_GRANULARITY
    • INBOUND_POLL_RATE

      public static final Config INBOUND_POLL_RATE
    • IN_BATCH_SIZE

      public static final Config IN_BATCH_SIZE
    • OUT_BATCH_SIZE

      public static final Config OUT_BATCH_SIZE
    • MAX_WM_DELTA

      public static final Config MAX_WM_DELTA
    • MAX_IO_EVENTS

      public static final Config MAX_IO_EVENTS
    • MAX_COMMAND_DELAY

      public static final Config MAX_COMMAND_DELAY
    • CLOCK_PRECISION

      public static final Config CLOCK_PRECISION
    • PGM_MAX_TPDU

      public static final Config PGM_MAX_TPDU
    • SIGNALER_PORT

      public static final Config SIGNALER_PORT
    • MSG_ALLOCATION_HEAP_THRESHOLD

      public static final Config MSG_ALLOCATION_HEAP_THRESHOLD
  • Field Details

    • value

      private final int value
  • Constructor Details

    • Config

      private Config(int value)
  • Method Details

    • values

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

      public static Config valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()