Skip to content
/ bunny Public
forked from ruby-amqp/bunny

Bunny is a popular synchronous Ruby client for RabbitMQ.

License

Notifications You must be signed in to change notification settings

vibes/bunny

 
 

Repository files navigation

About bunny

Bunny is a synchronous AMQP 0.8.0 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.8) because most of popular AMQP brokers such as RabbitMQ have already stopped or are planning to stop supporting it in the near future.

Limited Functionality Disclaimer

Bunny is very simplistic and does not support many features

You can use Bunny to:

  • Create and delete exchanges
  • Create and delete queues
  • Publish and synchronously consume (basic.get) messages

But it does not support

  • Arrays, hashes or even symbols in message headers
  • Framing of large messages
  • Many AMQP operations
  • RabbitMQ extensions
  • AMQP 0.9.1-only brokers

Bunny is NOT actively maintained

Bunny is also not actively maintained. Consider using Hot Bunnies (JRuby) or amqp gem instead.

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")

# declare default direct exchange which is bound to all queues
e = b.exchange("")

# publish a message to the exchange which then gets routed to the queue
e.publish("Hello, everybody!", :key => 'test1')

# 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.

AMQP Resources

Links

About

Bunny is a popular synchronous Ruby client for RabbitMQ.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%