Sha256: aa57e245e2d3bdf6029ef57ff4e6900d5d7b0a4ce23488718660490a7e3d17a1
Contents?: true
Size: 407 Bytes
Versions: 12
Compression:
Stored size: 407 Bytes
Contents
module Legion module Transport class Consumer < Legion::Transport::CONNECTOR::Consumer include Legion::Transport::Common attr_reader :consumer_tag 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 end end end
Version data entries
12 entries across 12 versions & 2 rubygems