Sha256: 9a554cadd532e171b32de66085c68939dcf6e499555c84dea646ca64843e4172
Contents?: true
Size: 963 Bytes
Versions: 32
Compression:
Stored size: 963 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.join(File.dirname(File.expand_path(__FILE__))) require File.join(__dir, "..", "example_helper") begin EventMachine.run do show_stopper = Proc.new { EventMachine.stop } Signal.trap "TERM", show_stopper EventMachine.add_timer(4, show_stopper) AMQ::Client::EventMachineClient.connect(:port => 9689, :vhost => "amq_client_testbed", :user => "amq_client_gem", :password => "amq_client_gem_password", :timeout => 0.3) do |client| raise "Connected, authenticated. This is not what this example is supposed to do!" end end rescue AMQ::Client::TCPConnectionFailed => e puts "TCP connection has failed, as expected. Shutting down…" EventMachine.stop if EventMachine.reactor_running? end
Version data entries
32 entries across 32 versions & 1 rubygems