class 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 1687 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 1701 def self.has_content? false end
new(consumer_tag)
click to toggle source
# File lib/amq/protocol/client.rb, line 1697 def initialize(consumer_tag) @consumer_tag = consumer_tag end