Sha256: 67ecc0f8e2dab8467d1cee9cc85437ea81f9bd39ea6bab75099d230acb54fbf5

Contents?: true

Size: 945 Bytes

Versions: 42

Compression:

Stored size: 945 Bytes

Contents

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

__dir = File.dirname(File.expand_path(__FILE__))
require File.join(__dir, "example_helper")

amq_client_example "Publish 100 messages using basic.publish" do |connection|
  puts "AMQP connection is open: #{connection.server_properties.inspect}"

  channel = AMQ::Client::Channel.new(connection, 1)
  channel.open do
    puts "Channel #{channel.id} is now open!"
  end

  exchange = AMQ::Client::Exchange.new(connection, channel, "amqclient.adapters.em.exchange1", :fanout)
  exchange.declare do
    100.times do
      # exchange.publish("à bientôt!")
      exchange.publish("See you soon!")
      print "."
    end

    $stdout.flush
  end

  show_stopper = Proc.new {
    connection.disconnect do
      puts
      puts "AMQP connection is now properly closed"
      EM.stop
    end
  }

  EM.add_periodic_timer(1, show_stopper)

  Signal.trap "INT",  show_stopper
  Signal.trap "TERM", show_stopper
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha27 examples/eventmachine_adapter/basic_publish.rb
amq-client-0.7.0.alpha26 examples/eventmachine_adapter/basic_publish.rb