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