Created
June 11, 2011 03:41
-
-
Save michaelklishin/1020226 to your computer and use it in GitHub Desktop.
An example of auto-deleted exchange declaration using Ruby amqp gem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'amqp' | |
| puts "=> Exchange#initialize example that uses :auto_delete => true" | |
| puts | |
| AMQP.start(:host => 'localhost', :port => 5673) do |connection| | |
| AMQP::Channel.new do |channel, open_ok| | |
| puts "Channel ##{channel.id} is now open!" | |
| AMQP::Exchange.new(channel, :direct, "amqpgem.examples.xchange2", :auto_delete => false) do |exchange| | |
| puts "#{exchange.name} is ready to go" | |
| end | |
| AMQP::Exchange.new(channel, :direct, "amqpgem.examples.xchange3", :auto_delete => true) do |exchange| | |
| puts "#{exchange.name} is ready to go" | |
| end | |
| end | |
| show_stopper = Proc.new do | |
| $stdout.puts "Stopping..." | |
| connection.close { EventMachine.stop } | |
| end | |
| Signal.trap "INT", show_stopper | |
| EM.add_timer(2, show_stopper) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment