Sha256: 7e6ca162f45a2501ba1cc9a0ac6ea8478e7d38125be8e1a75b2b555cd746f5e8

Contents?: true

Size: 754 Bytes

Versions: 10

Compression:

Stored size: 754 Bytes

Contents

# encoding: binary

module AMQ
  module Protocol
    module TypeConstants
      TYPE_STRING       = 'S'.freeze
      TYPE_INTEGER      = 'I'.freeze
      TYPE_TIME         = 'T'.freeze
      TYPE_DECIMAL      = 'D'.freeze
      TYPE_HASH         = 'F'.freeze
      TYPE_ARRAY        = 'A'.freeze
      TYPE_BYTE         = 'b'.freeze
      TYPE_64BIT_FLOAT  = 'd'.freeze
      TYPE_32BIT_FLOAT  = 'f'.freeze
      TYPE_SIGNED_64BIT = 'l'.freeze
      TYPE_SIGNED_16BIT = 's'.freeze
      TYPE_BOOLEAN      = 't'.freeze
      TYPE_BYTE_ARRAY   = 'x'.freeze
      TYPE_VOID         = 'V'.freeze
      TEN               = '10'.freeze

      BOOLEAN_TRUE  = "\x01".freeze
      BOOLEAN_FALSE = "\x00".freeze
    end # TypeConstants
  end # Protocol
end # AMQ

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
amq-protocol-2.3.2 lib/amq/protocol/type_constants.rb
amq-protocol-2.3.1 lib/amq/protocol/type_constants.rb
amq-protocol-2.3.0 lib/amq/protocol/type_constants.rb
amq-protocol-2.3.0.rc2 lib/amq/protocol/type_constants.rb
amq-protocol-2.3.0.rc1 lib/amq/protocol/type_constants.rb
amq-protocol-2.2.0 lib/amq/protocol/type_constants.rb
amq-protocol-2.1.0 lib/amq/protocol/type_constants.rb
amq-protocol-2.0.1 lib/amq/protocol/type_constants.rb
amq-protocol-2.0.0 lib/amq/protocol/type_constants.rb
amq-protocol-1.9.2 lib/amq/protocol/type_constants.rb