Sha256: 91acf58352bc06670ed1b3ae27382ed8bdba98a0a308f4003ac0e29169bd3ac2

Contents?: true

Size: 889 Bytes

Versions: 32

Compression:

Stored size: 889 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 { EventMachine.stop }
  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

32 entries across 32 versions & 1 rubygems

Version Path
amq-client-1.0.4 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.3 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.1.0.pre1 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.2 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.1 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.0 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.12 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.11 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.10 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.9 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.8 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.7 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.6 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.5 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.4 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.0.pre2 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.3 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-1.0.0.pre1 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.2 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb
amq-client-0.9.1 examples/eventmachine_adapter/error_handling/connection_failure_callback.rb