Sha256: 9ba9bc35d1b8fe46b4d372c6ffc1791958885d2f62de4c93c5e051c6671c3aac

Contents?: true

Size: 1007 Bytes

Versions: 9

Compression:

Stored size: 1007 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!"

    AMQP::Queue.new(channel, "", :auto_delete => true) do |queue|
      puts "#{queue.name} is ready to go"
    end

    AMQP::Queue.new(channel, "", :auto_delete => true) do |queue, declare_ok|
      puts "#{queue.name} is ready to go. AMQP method: #{declare_ok.inspect}"
    end

    channel.queue("", :auto_delete => true) do |queue, declare_ok|
      puts "#{queue.name} is ready to go. AMQP method: #{declare_ok.inspect}"
    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

9 entries across 9 versions & 1 rubygems

Version Path
amqp-0.8.0.rc11 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc10 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc9 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc8 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc7 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc6 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc5 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc4 examples/queues/declare_a_queue_without_assignment.rb
amqp-0.8.0.rc3 examples/queues/declare_a_queue_without_assignment.rb