class Legion::Transport::Consumer

Attributes

consumer_tag[R]

Public Class Methods

new(queue:, no_ack: false, exclusive: false, consumer_tag: generate_consumer_tag, **opts) click to toggle source
Calls superclass method
# File lib/legion/transport/consumer.rb, line 7
def initialize(queue:, no_ack: false, exclusive: false, consumer_tag: generate_consumer_tag, **opts)
  @consumer_tag = consumer_tag
  super(channel, queue, consumer_tag, no_ack, exclusive, opts)
end