Sha256: 1f31abb77339d9775d6963a186076a74e88eb751b38de0406d5a9f23701a4d76
Contents?: true
Size: 916 Bytes
Versions: 30
Compression:
Stored size: 916 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.join(File.dirname(File.expand_path(__FILE__))) require File.join(__dir, "example_helper") EM.run do show_stopper = Proc.new { EM.stop } Signal.trap "INT", show_stopper Signal.trap "TERM", show_stopper EM.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, :on_tcp_connection_failure => Proc.new { |settings| puts "Failed to connect, as expected"; EM.stop }) do |client| raise "Connected, authenticated. This is not what this example is supposed to do!" end end
Version data entries
30 entries across 30 versions & 1 rubygems