Sha256: bd5765ca7501c9e5bcf815dad61a05b9bb90db3f31dee4977c28e8977c498c62

Contents?: true

Size: 754 Bytes

Versions: 21

Compression:

Stored size: 754 Bytes

Contents

# encoding: binary

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

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

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
amq-protocol-1.1.0 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.1 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.5 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre7 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.4 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre6 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.3 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre5 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.2 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre4 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre3 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre2 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.1 lib/amq/protocol/type_constants.rb
amq-protocol-1.0.0.pre1 lib/amq/protocol/type_constants.rb
amq-protocol-0.9.0 lib/amq/protocol/type_constants.rb
amq-protocol-0.8.4 lib/amq/protocol/type_constants.rb
amq-protocol-0.8.3 lib/amq/protocol/type_constants.rb
amq-protocol-0.8.1 lib/amq/protocol/type_constants.rb
amq-protocol-0.8.0 lib/amq/protocol/type_constants.rb