rabbitmq-tutorials/ruby/receive.rb
Michael Klishin 6be7cfebf9
Bunny: warn against subscribe(block: true)
It was never meant to be used outside of tutorials
but unfortunately some do just that.
2019-02-27 04:38:02 +03:00

22 lines
518 B
Ruby

#!/usr/bin/env ruby
require 'bunny'
connection = Bunny.new(automatically_recover: false)
connection.start
channel = connection.create_channel
queue = channel.queue('hello')
begin
puts ' [*] Waiting for messages. To exit press CTRL+C'
# block: true is only used to keep the main thread
# alive. Please avoid using it in real world applications.
queue.subscribe(block: true) do |_delivery_info, _properties, body|
puts " [x] Received #{body}"
end
rescue Interrupt => _
connection.close
exit(0)
end