Sha256: b82ea9afd784ac1f32a97d28212cbbb5e58f817fc07eaedf26308576169834c0
Contents?: true
Size: 936 Bytes
Versions: 26
Compression:
Stored size: 936 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 |client| puts "AMQP connection is open: #{client.connection.server_properties.inspect}" channel = AMQ::Client::Channel.new(client, 1) channel.open do puts "Channel #{channel.id} is now open!" end exchange = AMQ::Client::Exchange.new(client, 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 { client.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
26 entries across 26 versions & 1 rubygems