Sha256: 0b94c128d69bf75daac5ae9d4b1207876b81deed415f4b8771e2b46d1643107f

Contents?: true

Size: 766 Bytes

Versions: 53

Compression:

Stored size: 766 Bytes

Contents

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

require "rubygems"
require "amqp"

AMQP.start("amqp://guest:guest@dev.rabbitmq.com") do |connection, open_ok|
  channel = AMQP::Channel.new(connection)
  exchange = channel.fanout("amq.fanout")

  channel.queue("", :auto_delete => true, :exclusive => true) do |queue, declare_ok|
    queue.bind(exchange)
    puts "Bound. Publishing a message..."
    exchange.publish("Ohai!")

    EventMachine.add_timer(0.5) do
      queue.pop do |metadata, payload|
        if payload
          puts "Fetched a message: #{payload.inspect}, content_type: #{metadata.content_type}. Shutting down..."
        else
          puts "No messages in the queue"
        end

        connection.close { EventMachine.stop }
      end
    end
  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
amqp-1.1.2 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.1.1 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.1.0 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.3 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.1.0.rc1 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.1.0.pre2 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.1.0.pre1 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.2 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.1 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.0 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.10 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.9 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.8 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.0.pre2 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.7 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.6 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-1.0.0.pre1 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.5 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.4 examples/guides/queues/07_fetch_a_message_from_the_queue.rb
amqp-0.9.3 examples/guides/queues/07_fetch_a_message_from_the_queue.rb