Class ProtonConstants


  • public final class ProtonConstants
    extends java.lang.Object
    Constants referenced throughout the proton engine code.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String AMQP_PERFORMATIVE_HANDLER
      Engine handler that acts on AMQP performatives
      static int CHANNEL_MAX
      The maximum value for AMQP channels as defined by the specification.
      static int DEFAULT_MAX_AMQP_FRAME_SIZE
      The default AMQP max frame size used by the engine and connection if none is set by the client or remote peer.
      static java.lang.String FRAME_DECODING_HANDLER
      Engine handler that decodes performatives and forwards the frames
      static java.lang.String FRAME_ENCODING_HANDLER
      Engine handler that encodes performatives and writes the resulting buffer
      static java.lang.String FRAME_LOGGING_HANDLER
      Engine handler that logs incoming and outgoing performatives and frames
      static long HANDLE_MAX
      The maximum value for AMQP handles as defined by the specification.
      static int MIN_MAX_AMQP_FRAME_SIZE
      The minimum allowed AMQP maximum frame size defined by the specification.
      static java.lang.String SASL_PERFORMATIVE_HANDLER
      Engine handler that acts on SASL performatives
    • Constructor Summary

      Constructors 
      Constructor Description
      ProtonConstants()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MIN_MAX_AMQP_FRAME_SIZE

        public static final int MIN_MAX_AMQP_FRAME_SIZE
        The minimum allowed AMQP maximum frame size defined by the specification.
        See Also:
        Constant Field Values
      • DEFAULT_MAX_AMQP_FRAME_SIZE

        public static final int DEFAULT_MAX_AMQP_FRAME_SIZE
        The default AMQP max frame size used by the engine and connection if none is set by the client or remote peer.
        See Also:
        Constant Field Values
      • CHANNEL_MAX

        public static final int CHANNEL_MAX
        The maximum value for AMQP channels as defined by the specification.
        See Also:
        Constant Field Values
      • HANDLE_MAX

        public static final long HANDLE_MAX
        The maximum value for AMQP handles as defined by the specification.
        See Also:
        Constant Field Values
      • AMQP_PERFORMATIVE_HANDLER

        public static final java.lang.String AMQP_PERFORMATIVE_HANDLER
        Engine handler that acts on AMQP performatives
        See Also:
        Constant Field Values
      • SASL_PERFORMATIVE_HANDLER

        public static final java.lang.String SASL_PERFORMATIVE_HANDLER
        Engine handler that acts on SASL performatives
        See Also:
        Constant Field Values
      • FRAME_ENCODING_HANDLER

        public static final java.lang.String FRAME_ENCODING_HANDLER
        Engine handler that encodes performatives and writes the resulting buffer
        See Also:
        Constant Field Values
      • FRAME_DECODING_HANDLER

        public static final java.lang.String FRAME_DECODING_HANDLER
        Engine handler that decodes performatives and forwards the frames
        See Also:
        Constant Field Values
      • FRAME_LOGGING_HANDLER

        public static final java.lang.String FRAME_LOGGING_HANDLER
        Engine handler that logs incoming and outgoing performatives and frames
        See Also:
        Constant Field Values
    • Constructor Detail

      • ProtonConstants

        public ProtonConstants()