Sha256: 58ce218e4cb3a2d7392bce652f00572bb310226302379f346f8f9c80e5adb48d
Contents?: true
Size: 998 Bytes
Versions: 22
Compression:
Stored size: 998 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.dirname(File.expand_path(__FILE__)) require File.join(__dir, "example_helper") amq_client_example "basic.return example" do |client| channel = AMQ::Client::Channel.new(client, 1) channel.open do queue = AMQ::Client::Queue.new(client, channel).declare(false, false, false, true) exchange = AMQ::Client::Exchange.new(client, channel, "amq.fanout", :fanout) exchange.on_return do |method| puts "Handling a returned message: exchange = #{method.exchange}, reply_code = #{method.reply_code}, reply_text = #{method.reply_text}" end 10.times do |i| exchange.publish("Message ##{i}", AMQ::Protocol::EMPTY_STRING, {}, false, true) end show_stopper = Proc.new { client.disconnect do puts puts "AMQP connection is now properly closed" EM.stop end } Signal.trap "INT", show_stopper Signal.trap "TERM", show_stopper EM.add_timer(1, show_stopper) end end
Version data entries
22 entries across 22 versions & 1 rubygems