Class: AMQ::Protocol::Channel::FlowOk

Inherits:
Method
  • Object
show all
Defined in:
lib/amq/protocol/client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Method

encode_body, index, inherited, instantiate, method_id, methods, name, split_headers

Constructor Details

#initialize(active) ⇒ FlowOk

Returns a new instance of FlowOk.



719
720
721
# File 'lib/amq/protocol/client.rb', line 719

def initialize(active)
  @active = active
end

Instance Attribute Details

#activeObject (readonly)

Returns the value of attribute active.



718
719
720
# File 'lib/amq/protocol/client.rb', line 718

def active
  @active
end

Class Method Details

.decode(data) ⇒ Object

Returns:



710
711
712
713
714
715
716
# File 'lib/amq/protocol/client.rb', line 710

def self.decode(data)
  offset = 0
  bit_buffer = data[offset, 1].unpack(PACK_CHAR).first
  offset += 1
  active = (bit_buffer & (1 << 0)) != 0
  self.new(active)
end

.encode(channel, active) ⇒ Object

u’active = nil’

Returns:



729
730
731
732
733
734
735
736
# File 'lib/amq/protocol/client.rb', line 729

def self.encode(channel, active)
  buffer = ''
  buffer << @packed_indexes
  bit_buffer = 0
  bit_buffer = bit_buffer | (1 << 0) if active
  buffer << [bit_buffer].pack(PACK_CHAR)
  MethodFrame.new(buffer, channel)
end

.has_content?Boolean

Returns:

  • (Boolean)


723
724
725
# File 'lib/amq/protocol/client.rb', line 723

def self.has_content?
  false
end