Sha256: ba7bc377e4128c2ae6ed1f6c311341b9e4a1515d2505ba8ded01632c5ad6ce40

Contents?: true

Size: 1.29 KB

Versions: 53

Compression:

Stored size: 1.29 KB

Contents

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

require "bundler"
Bundler.setup

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

require "amqp"

EventMachine.run do
  AMQP.connect do |connection|
    channel1  = AMQP::Channel.new(connection)
    channel2  = AMQP::Channel.new(connection)
    exchange = channel1.direct("amqpgem.examples.exchanges.direct", :auto_delete => true)

    q1 = channel1.queue("amqpgem.examples.queues.shared", :auto_delete => true).bind(exchange, :routing_key => "shared.key")
    q1.subscribe do |payload|
      puts "Queue #{q1.name} on channel 1 received #{payload}"
    end

    # since the queue is shared, binding here is redundant but we will leave it in for completeness.
    q2 = channel2.queue("amqpgem.examples.queues.shared", :auto_delete => true).bind(exchange, :routing_key => "shared.key")
    q2.subscribe do |payload|
      puts "Queue #{q2.name} on channel 2 received #{payload}"
    end

    # Publish some test data in a bit, after all queues are declared & bound
    EventMachine.add_timer(1.2) do
      5.times { |i| exchange.publish("Hello #{i}, direct exchanges world!", :routing_key => "shared.key") }
    end


    show_stopper = Proc.new { connection.close { EventMachine.stop } }

    Signal.trap "TERM", show_stopper
    EM.add_timer(3, show_stopper)
  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
amqp-1.8.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.7.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.6.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.5.3 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.5.2 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.5.1 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.5.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.4.2 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.4.1 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.4.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.3.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.2.1 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.2.0 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.8 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.7 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.6 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.5 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.4 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.1.3 examples/routing/round_robin_with_direct_exchange.rb
amqp-1.0.4 examples/routing/round_robin_with_direct_exchange.rb