Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created September 15, 2009 22:11
Show Gist options
  • Save kennethkalmer/187696 to your computer and use it in GitHub Desktop.
Save kennethkalmer/187696 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'mq'
AMQP.start do
1000.times { |i| MQ.queue('A').publish("A #{i}") }
1000.times { |i| MQ.queue('B').publish("B #{i}") }
amq = MQ.new
amq.queue('A').subscribe do |msg|
p [ Time.now, msg ]
end
amq = MQ.new
amq.queue('B').subscribe do |msg|
p [ Time.now, msg ]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment