Sha256: 79d7dcb86363255a7c630ef809a1d1e1f13794621fe89f3317b152fceed03cb1

Contents?: true

Size: 681 Bytes

Versions: 6

Compression:

Stored size: 681 Bytes

Contents

module AMQ
  module Protocol
    TLS_PORT         = 5671
    SSL_PORT         = 5671

    # caching
    EMPTY_STRING = "".freeze

    PACK_INT8               = 'c'.freeze
    PACK_CHAR               = 'C'.freeze
    PACK_UINT16             = 'n'.freeze
    PACK_UINT16_X2          = 'n2'.freeze
    PACK_UINT32             = 'N'.freeze
    PACK_UINT32_X2          = 'N2'.freeze
    PACK_UINT64_BE          = 'Q>'.freeze
    PACK_INT64              = 'q'.freeze
    PACK_INT64_BE           = 'q>'.freeze
    PACK_UCHAR_UINT32       = 'CN'.freeze
    PACK_CHAR_UINT16_UINT32 = 'cnN'.freeze

    PACK_32BIT_FLOAT        = 'f'.freeze
    PACK_64BIT_FLOAT        = 'G'.freeze
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
amq-protocol-2.3.2 lib/amq/protocol/constants.rb
amq-protocol-2.3.1 lib/amq/protocol/constants.rb
amq-protocol-2.3.0 lib/amq/protocol/constants.rb
amq-protocol-2.3.0.rc2 lib/amq/protocol/constants.rb
amq-protocol-2.3.0.rc1 lib/amq/protocol/constants.rb
amq-protocol-2.2.0 lib/amq/protocol/constants.rb