Sha256: 9f11288c6a1fde85a604bbf3760250875407a2eb17e5f79e938e662189099b16

Contents?: true

Size: 985 Bytes

Versions: 55

Compression:

Stored size: 985 Bytes

Contents

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

require "bundler"
Bundler.setup

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

require 'amqp'


puts "=> Queue#initialize example that uses a block"
puts
AMQP.start("amqp://guest:guest@dev.rabbitmq.com:5672") do |connection, open_ok|
  AMQP::Channel.new do |channel, open_ok|
    puts "Channel ##{channel.id} is now open!" if channel.open?

    xchange = channel.fanout("amq.fanout", :nowait => true)
    q = AMQP::Queue.new(channel, "", :auto_delete => true)


    EM.add_timer(0.5) do
      puts "Channel ##{channel.id} is still open!" if channel.open?
      q.bind(xchange).subscribe do |header, payload|
        puts "Got a payload: #{payload}"
      end

      EventMachine.add_timer(0.3) { xchange.publish("à bientôt!") }
    end
  end


  show_stopper = Proc.new do
    $stdout.puts "Stopping..."

    connection.close {
      EM.stop { exit }
    }
  end

  Signal.trap "INT", show_stopper
  EM.add_timer(2, show_stopper)
end

Version data entries

55 entries across 55 versions & 1 rubygems

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