Sha256: 259e8b5231abda1b145b14fcf24c379dc27b8f0ba413fe907cef1b79ed447025

Contents?: true

Size: 597 Bytes

Versions: 6

Compression:

Stored size: 597 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_INT64              = '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-1.9.2 lib/amq/protocol/constants.rb
amq-protocol-1.9.1 lib/amq/protocol/constants.rb
amq-protocol-1.9.0 lib/amq/protocol/constants.rb
amq-protocol-1.8.0 lib/amq/protocol/constants.rb
amq-protocol-1.7.0 lib/amq/protocol/constants.rb
amq-protocol-1.6.0 lib/amq/protocol/constants.rb