Sha256: 9cbdda54753e0b06f2c38bdb4d9a7a4108399c727ec98e191c71c140cf0c5fb3

Contents?: true

Size: 669 Bytes

Versions: 1

Compression:

Stored size: 669 Bytes

Contents

# -*- encoding: utf-8 -*-

# A specialized container for storing header name / value pairs for a Stomp
# {Stomper::Frame Frame}.  This container behaves much like a +Hash+, but
# is specialized for the Stomp protocol.  Header names are always converted
# into +String+s through the use of +to_s+ and may have more than one value
# associated with them.
#
# @note Header names are case sensitive, therefore the names 'header'
#   and 'Header' will not refer to the same values.
# @see Stomper::Support::Ruby1_8::Headers Implementation for Ruby 1.8.7
# @see Stomper::Support::Ruby1_9::Headers Implementation for Ruby 1.9
class Stomper::Headers
  include ::Enumerable
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stomper-2.0.0 lib/stomper/headers.rb