Sha256: 73e6c103687665e414bfcb797bb49049b208d7f073894c229b18e8d9e4ace4c9

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

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
  reconnector = Proc.new { |client, settings|
    puts "Asked to reconnect to #{settings[:host]}:#{settings[:port]}"


  }


  AMQ::Client::EventMachineClient.connect(:port     => 5672,
                                          :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, this was NOT expected"; EM.stop }) do |client|

    client.on_tcp_connection_loss do |cl, settings|
      puts "tcp_connection_loss handler kicks in"
      cl.reconnect(1)
    end

    show_stopper = Proc.new {
      client.disconnect {
        puts "Disconnected. Exiting…"
        EM.stop
      }
    }
    
    Signal.trap "INT",  show_stopper
    Signal.trap "TERM", show_stopper
    
    EM.add_timer(30, show_stopper)


    puts "Connected, authenticated. To really exercise this example, shut AMQP broker down for a few seconds. If you don't it will exit gracefully in 30 seconds."
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha7 examples/eventmachine_adapter/connection_loss_handler.rb
amq-client-0.7.0.alpha6 examples/eventmachine_adapter/connection_loss_handler.rb