Package zmq

Enum Config

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Config>

    public enum Config
    extends java.lang.Enum<Config>
    • Enum Constant Detail

      • 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 Detail

      • value

        private final int value
    • Constructor Detail

      • Config

        private Config​(int value)
    • Method Detail

      • values

        public static Config[] 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 (Config c : Config.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Config 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 name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()