Sha256: 636d105499f6f5fd114cabeb639f109947e6c5c0e79ab09900b9948595721c9a

Contents?: true

Size: 901 Bytes

Versions: 53

Compression:

Stored size: 901 Bytes

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("amqp://dev.rabbitmq.com") do |connection|
    channel  = AMQP::Channel.new(connection)
    exchange = channel.topic("amqpgem.examples.routing.fanout_routing", :auto_delete => true)

    # Subscribers.
    10.times do
      q = channel.queue("", :exclusive => true, :auto_delete => true).bind(exchange)
      q.subscribe do |payload|
        puts "Queue #{q.name} received #{payload}"
      end
    end

    # Publish some test data in a bit, after all queues are declared & bound
    EventMachine.add_timer(1.2) { exchange.publish "Hello, fanout exchanges world!" }


    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/fanout_routing.rb
amqp-1.7.0 examples/routing/fanout_routing.rb
amqp-1.6.0 examples/routing/fanout_routing.rb
amqp-1.5.3 examples/routing/fanout_routing.rb
amqp-1.5.2 examples/routing/fanout_routing.rb
amqp-1.5.1 examples/routing/fanout_routing.rb
amqp-1.5.0 examples/routing/fanout_routing.rb
amqp-1.4.2 examples/routing/fanout_routing.rb
amqp-1.4.1 examples/routing/fanout_routing.rb
amqp-1.4.0 examples/routing/fanout_routing.rb
amqp-1.3.0 examples/routing/fanout_routing.rb
amqp-1.2.1 examples/routing/fanout_routing.rb
amqp-1.2.0 examples/routing/fanout_routing.rb
amqp-1.1.8 examples/routing/fanout_routing.rb
amqp-1.1.7 examples/routing/fanout_routing.rb
amqp-1.1.6 examples/routing/fanout_routing.rb
amqp-1.1.5 examples/routing/fanout_routing.rb
amqp-1.1.4 examples/routing/fanout_routing.rb
amqp-1.1.3 examples/routing/fanout_routing.rb
amqp-1.0.4 examples/routing/fanout_routing.rb