About
Bunny is a synchronous AMQP client. It supports Ruby 1.9.2, 1.8.7, Ruby Enterprise Edition and JRuby. Protocol-wise, Bunny supports AMQP 0.9.1 and 0.8. Support for AMQP 0.8 will be dropped in the next version of Bunny (0.7) because most of popular AMQP brokers such as RabbitMQ already stopped or planning to stop supporting it in the near future.
Bunny is based on a great deal of useful code from the amqp Ruby gem and Carrot.
You can use Bunny to:
- Create and delete exchanges
- Create and delete queues
- Publish and consume messages
Quick Start
require "bunny"
b = Bunny.new(:logging => true)
# start a communication session with the amqp server
b.start
# declare a queue
q = b.queue("test1")
# publish a message to the queue
q.publish("Hello everybody!")
# get message from the queue
msg = q.pop[:payload]
puts "This is the message: " + msg + "\n\n"
# close the connection
b.stop
… or just:
require "bunny"
# Create a direct queue named "my_testq"
Bunny.run { |c| c.queue("my_testq") }
Please see the examples directory for additional usage information.
Links
- Source code
- @rubyamqp at Twitter
- Ruby AMQP Google Group
- Blog