Skip to content

Instantly share code, notes, and snippets.

@michaelklishin
Created June 11, 2011 02:35
Show Gist options
  • Select an option

  • Save michaelklishin/1020181 to your computer and use it in GitHub Desktop.

Select an option

Save michaelklishin/1020181 to your computer and use it in GitHub Desktop.
An example of fanout AMQP exchange routing
#!/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
@bmatcuk

bmatcuk commented May 9, 2013

Copy link
Copy Markdown

Shouldn't line 14 read: exchange = channel.FANOUT(...?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment