Sha256: 92626802b344a4f92dfd2fb03a56fe7bf91f8f69c64938a5b099cc1f010d9807

Contents?: true

Size: 1.18 KB

Versions: 98

Compression:

Stored size: 1.18 KB

Contents

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

require "bundler"
Bundler.setup

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

require 'bunny'

conn = Bunny.new(:heartbeat_interval => 8)
conn.start

ch1 = conn.create_channel
x1  = ch1.topic("bunny.examples.recovery.e1", :durable => false)
q1  = ch1.queue("bunny.examples.recovery.q1", :durable => false)

q1.bind(x1, :routing_key => "abc").bind(x1, :routing_key => "def")

ch2 = conn.create_channel
x2  = ch2.topic("bunny.examples.recovery.e2", :durable => false)
q2  = ch2.queue("bunny.examples.recovery.q2", :durable => false)

q2.bind(x2, :routing_key => "abc").bind(x2, :routing_key => "def")

q1.subscribe do |delivery_info, metadata, payload|
  puts "Consumed #{payload} at stage one"
  x2.publish(payload, :routing_key => ["abc", "def", "xyz"].sample)
end

q2.subscribe do |delivery_info, metadata, payload|
  puts "Consumed #{payload} at stage two"
end

loop do
  sleep 2
  rk = ["abc", "def", "ghi", "xyz"].sample
  puts "Publishing with routing key #{rk}"

  begin
    x1.publish(rand.to_s, :routing_key => rk)
  # happens when a message is published before the connection
  # is recovered
  rescue Bunny::ConnectionClosedError => e
  end
end

Version data entries

98 entries across 98 versions & 1 rubygems

Version Path
bunny-2.11.0.pre1 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.10.0 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.9.2 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.9.1 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.7 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.7.4 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.8.1 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.9.0 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.7.3 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.8.0 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.7.2 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.7.1 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.7.0 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.6 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.5 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.4 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.3 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.2 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.1 examples/connection/automatic_recovery_with_multiple_consumers.rb
bunny-2.6.0 examples/connection/automatic_recovery_with_multiple_consumers.rb