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.



2265
2266
2267
# File 'lib/amq/protocol/client.rb', line 2265

def initialize(nowait)
  @nowait = nowait
end

Instance Attribute Details

#nowaitObject (readonly)

Returns the value of attribute nowait.



2264
2265
2266
# File 'lib/amq/protocol/client.rb', line 2264

def nowait
  @nowait
end

Class Method Details

.decode(data) ⇒ Object

Returns:



2256
2257
2258
2259
2260
2261
2262
# File 'lib/amq/protocol/client.rb', line 2256

def self.decode(data)
  offset = offset = 0 # self-assigning offset to eliminate "assigned but unused variable" warning even if offset is not used in this method
  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:



2275
2276
2277
2278
2279
2280
2281
# File 'lib/amq/protocol/client.rb', line 2275

def self.encode(channel, nowait)
  buffer = @packed_indexes.dup
  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)


2269
2270
2271
# File 'lib/amq/protocol/client.rb', line 2269

def self.has_content?
  false
end