mirror of
https://github.com/ditkrg/rabbit_carrots.git
synced 2026-01-22 22:06:40 +00:00
Accepts queue argument
This commit is contained in:
parent
189851ef6e
commit
b90ef2752b
@ -18,7 +18,7 @@ namespace :rabbit_carrots do
|
|||||||
|
|
||||||
raise "#{handler_class.name} must respond to `handle!`" unless handler_class.respond_to?(:handle!)
|
raise "#{handler_class.name} must respond to `handle!`" unless handler_class.respond_to?(:handle!)
|
||||||
|
|
||||||
run_task(queue_name: channel[:queue], handler_class:, routing_keys: channel[:routing_keys])
|
run_task(queue_name: channel[:queue], handler_class:, routing_keys: channel[:routing_keys], queue_arguments: channel[:arguments])
|
||||||
end
|
end
|
||||||
|
|
||||||
# Infinite loop to keep the process running
|
# Infinite loop to keep the process running
|
||||||
@ -28,12 +28,12 @@ namespace :rabbit_carrots do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def run_task(queue_name:, handler_class:, routing_keys:)
|
def run_task(queue_name:, queue_arguments: {}, handler_class:, routing_keys:)
|
||||||
RabbitCarrots::Connection.instance.channel.with do |channel|
|
RabbitCarrots::Connection.instance.channel.with do |channel|
|
||||||
exchange = channel.topic(RabbitCarrots.configuration.event_bus_exchange_name, durable: true)
|
exchange = channel.topic(RabbitCarrots.configuration.event_bus_exchange_name, durable: true)
|
||||||
|
|
||||||
Rails.logger.info "Listening on QUEUE: #{queue_name} for ROUTING KEYS: #{routing_keys}"
|
Rails.logger.info "Listening on QUEUE: #{queue_name} for ROUTING KEYS: #{routing_keys}"
|
||||||
queue = channel.queue(queue_name, durable: true)
|
queue = channel.queue(queue_name, durable: true, arguments: queue_arguments)
|
||||||
|
|
||||||
routing_keys.map(&:strip).each { |k| queue.bind(exchange, routing_key: k) }
|
routing_keys.map(&:strip).each { |k| queue.bind(exchange, routing_key: k) }
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module RabbitCarrots
|
module RabbitCarrots
|
||||||
VERSION = '0.1.17'
|
VERSION = '0.1.18'
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user