Class: AMQ::Protocol::Method

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

Class Method Summary collapse

Class Method Details

.encode_body(body, channel, frame_size) ⇒ Object



251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/amq/protocol/client.rb', line 251

def self.encode_body(body, channel, frame_size)
  return [] if body.empty?

  # See https://dev.rabbitmq.com/wiki/Amqp091Errata#section_11
  limit        = frame_size - 8

  array = Array.new
  while body
    payload, body = body[0, limit], body[limit, body.length - limit]
    # array << [0x03, payload]
    array << BodyFrame.new(payload, channel)
  end

  array
end

.indexObject



223
224
225
# File 'lib/amq/protocol/client.rb', line 223

def self.index
  @index
end

.inherited(base) ⇒ Object



227
228
229
230
231
# File 'lib/amq/protocol/client.rb', line 227

def self.inherited(base)
  if self == Protocol::Method
    @methods << base
  end
end

.instantiate(*args, &block) ⇒ Object

We can return different:

  • instantiate given subclass of Method

  • create an OpenStruct object

  • create a hash

  • yield params into the block rather than just return



273
274
275
276
277
278
# File 'lib/amq/protocol/client.rb', line 273

def self.instantiate(*args, &block)
  self.new(*args, &block)
  # or OpenStruct.new(args.first)
  # or args.first
  # or block.call(*args)
end

.method_idObject



215
216
217
# File 'lib/amq/protocol/client.rb', line 215

def self.method_id
  @method_id
end

.methodsObject



233
234
235
# File 'lib/amq/protocol/client.rb', line 233

def self.methods
  @methods
end

.nameObject



219
220
221
# File 'lib/amq/protocol/client.rb', line 219

def self.name
  @name
end

.split_headers(user_headers) ⇒ Object



237
238
239
240
241
242
243
244
245
246
247
248
249
# File 'lib/amq/protocol/client.rb', line 237

def self.split_headers(user_headers)
  properties, headers = {}, {}
  user_headers.each do |key, value|
    # key MUST be a symbol since symbols are not garbage-collected
    if Basic::PROPERTIES.include?(key)
      properties[key] = value
    else
      headers[key] = value
    end
  end

  return [properties, headers]
end