Sha256: a922e0e1b841fcbb725c3f887314cfab4a9be8bded948bdebe8fb619e38599e8

Contents?: true

Size: 966 Bytes

Versions: 53

Compression:

Stored size: 966 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

require "bundler"
Bundler.setup

$:.unshift(File.expand_path("../../../lib", __FILE__))

require 'amqp'

puts "=> Handling a returned unroutable message that was published as mandatory"
puts

AMQP.start(:host => '127.0.0.1') do |connection|
  channel  = AMQP.channel
  channel.on_error { |ch, channel_close| EventMachine.stop; raise "channel error: #{channel_close.reply_text}" }

  # this exchange has no bindings, so messages published to it cannot be routed.
  exchange = channel.fanout("amqpgem.examples.fanout", :auto_delete => true)
  exchange.on_return do |basic_return, metadata, payload|
    puts "#{payload} was returned! reply_code = #{basic_return.reply_code}, reply_text = #{basic_return.reply_text}"
  end

  EventMachine.add_timer(0.3) {
    10.times do |i|
      exchange.publish("Message ##{i}", :mandatory => true)
    end
  }

  EventMachine.add_timer(2) {
    connection.close { EventMachine.stop }
  }
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
amqp-1.1.2 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.1.1 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.1.0 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.3 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.1.0.rc1 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.1.0.pre2 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.1.0.pre1 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.2 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.1 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.0 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.10 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.9 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.8 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.0.pre2 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.7 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.6 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-1.0.0.pre1 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.5 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.4 examples/routing/unroutable_mandatory_message_is_returned.rb
amqp-0.9.3 examples/routing/unroutable_mandatory_message_is_returned.rb