Created
June 11, 2011 02:35
-
-
Save michaelklishin/1020181 to your computer and use it in GitHub Desktop.
An example of fanout AMQP exchange routing
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
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| require "bundler" | |
| Bundler.setup | |
| $:.unshift(File.expand_path("../../../lib", __FILE__)) | |
| require "amqp" | |
| EventMachine.run do | |
| AMQP.connect("amqp://dev.rabbitmq.com") do |connection| | |
| channel = AMQP::Channel.new(connection) | |
| exchange = channel.topic("amqpgem.examples.routing.fanout_routing", :auto_delete => true) | |
| # Subscribers. | |
| 10.times do | |
| q = channel.queue("", :exclusive => true, :auto_delete => true).bind(exchange) | |
| q.subscribe do |payload| | |
| puts "Queue #{q.name} received #{payload}" | |
| end | |
| end | |
| # Publish some test data in a bit, after all queues are declared & bound | |
| EventMachine.add_timer(1.2) { exchange.publish "Hello, fanout exchanges world!" } | |
| show_stopper = Proc.new { connection.close { EventMachine.stop } } | |
| Signal.trap "TERM", show_stopper | |
| EM.add_timer(3, show_stopper) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shouldn't line 14 read: exchange = channel.FANOUT(...?