Class/Module Index [+]

Quicksearch

AMQ::Protocol::Basic::CancelOk

Attributes

consumer_tag[R]

Public Class Methods

decode(data) click to toggle source

@return

# File lib/amq/protocol/client.rb, line 1730
def self.decode(data)
  offset = 0
  length = data[offset, 1].unpack(PACK_CHAR).first
  offset += 1
  consumer_tag = data[offset, length]
  offset += length
  self.new(consumer_tag)
end
has_content?() click to toggle source
# File lib/amq/protocol/client.rb, line 1744
def self.has_content?
  false
end
new(consumer_tag) click to toggle source
# File lib/amq/protocol/client.rb, line 1740
def initialize(consumer_tag)
  @consumer_tag = consumer_tag
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.