Sha256: de34fdfac61c461f97c336848736a34dec662d44c8b69b05b992f0f90244ea78

Contents?: true

Size: 1.12 KB

Versions: 68

Compression:

Stored size: 1.12 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

  queue.bind("amq.fanout") do
    puts "Queue #{queue.name} is now bound to amq.fanout"
  end

  queue.consume do |consumer_tag|
    queue.on_delivery do |header, payload, consumer_tag, delivery_tag, redelivered, exchange, routing_key|
      puts "Got a delivery: #{payload} (delivery tag: #{delivery_tag}), rejecting..."

      queue.reject(delivery_tag, false)
    end

    exchange = AMQ::Client::Exchange.new(client, channel, "amq.fanout", :fanout)
    10.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

68 entries across 68 versions & 1 rubygems

Version Path
amq-client-0.9.0 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.9.0.pre2 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.9.0.pre1 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.7 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.7.pre1 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.6 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.5 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.4 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.3 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.2 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.1 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.8.0 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha35 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha34 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha33 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha32 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha31 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha30 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha29 examples/coolio_adapter/basic_consume_with_rejections.rb
amq-client-0.7.0.alpha28 examples/coolio_adapter/basic_consume_with_rejections.rb