Sha256: 967afa7e7649e1a7fb4a06d07fa2e76fb90c7bf308eaf0f3fa3d9e32c1888ac5
Contents?: true
Size: 1.4 KB
Versions: 26
Compression:
Stored size: 1.4 KB
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.dirname(File.expand_path(__FILE__)) require File.join(__dir, "example_helper") amq_client_example "Set a queue up for message delivery" do |client| channel = AMQ::Client::Channel.new(client, 1) channel.open do puts "Channel #{channel.id} is now open!" end queue = AMQ::Client::Queue.new(client, channel) queue.declare(false, false, false, true) do puts "Server-named, auto-deletable Queue #{queue.name.inspect} is ready" end queue.bind("amq.fanout") do puts "Queue #{queue.name} is now bound to amq.fanout" end queue.consume(true) do |consumer_tag| puts "Subscribed for messages routed to #{queue.name}, consumer tag is #{consumer_tag}, using no-ack mode" puts queue.on_delivery do |header, payload, consumer_tag, delivery_tag, redelivered, exchange, routing_key| puts "Got a delivery:" puts " Delivery tag: #{delivery_tag}" puts " Header: #{header.inspect}" puts " Payload: #{payload.inspect}" end exchange = AMQ::Client::Exchange.new(client, channel, "amq.fanout", :fanout) 100.times do |i| exchange.publish("Message ##{i}") end end show_stopper = Proc.new { client.disconnect do puts puts "AMQP connection is now properly closed" Coolio::Loop.default.stop end } Signal.trap "INT", show_stopper Signal.trap "TERM", show_stopper end
Version data entries
26 entries across 26 versions & 1 rubygems