Sha256: 77b790d680c4e41a402acad7894f41d03649ec4353557dc95765cd087469e23a
Contents?: true
Size: 815 Bytes
Versions: 1
Compression:
Stored size: 815 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 require "rubygems" require "amqp" AMQP.start("amqp://guest:guest@dev.rabbitmq.com:5672") do |connection, open_ok| puts "Connected" AMQP::Channel.new(connection) do |channel, open_ok| puts "Opened a channel" channel.on_error do |arg| raise "Channel-level exception: #{arg.inspect}" end exchange = channel.fanout("amq.fanout") channel.queue("", :auto_delete => true, :exclusive => true) do |queue, declare_ok| queue.bind(exchange) do |_| puts "Bound" end EventMachine.add_timer(0.5) do queue.unbind(exchange) do |_| puts "Unbound. Shutting down..." connection.close { EM.stop { exit } } end end # EventMachine.add_timer end # channel.queue end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
amqp-0.8.0.rc12 | examples/guides/queues/10_unbinding_from_exchange.rb |