Class: AMQ::Protocol::Confirm::Select

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(nowait) ⇒ Select

Returns a new instance of Select.



2169
2170
2171
# File 'lib/amq/protocol/client.rb', line 2169

def initialize(nowait)
  @nowait = nowait
end

Instance Attribute Details

#nowaitObject (readonly)

Returns the value of attribute nowait.



2168
2169
2170
# File 'lib/amq/protocol/client.rb', line 2168

def nowait
  @nowait
end

Class Method Details

.decode(data) ⇒ Object

Returns:



2160
2161
2162
2163
2164
2165
2166
# File 'lib/amq/protocol/client.rb', line 2160

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

.encode(channel, nowait) ⇒ Object

“nowait = false”

Returns:



2179
2180
2181
2182
2183
2184
2185
2186
# File 'lib/amq/protocol/client.rb', line 2179

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

.has_content?Boolean

Returns:

  • (Boolean)


2173
2174
2175
# File 'lib/amq/protocol/client.rb', line 2173

def self.has_content?
  false
end