Sha256: 57b5815826d6d59c1f146ff05db4ed20be13fd6e18b227cc6a50b24647d1fdb9

Contents?: true

Size: 648 Bytes

Versions: 26

Compression:

Stored size: 648 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
  AMQ::Client::EventMachineClient.connect(:port => 5672, :vhost => "/amq_client_testbed", :user => "guest", :password => "guest") do |client|
    puts "Connected, authenticated"

    puts client.authenticating?


    show_stopper = Proc.new {
      client.disconnect do
        puts
        puts "AMQP connection is now properly closed"
        EM.stop
      end
    }

    Signal.trap "INT",  show_stopper
    Signal.trap "TERM", show_stopper

    EM.add_timer(1, show_stopper)
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha25 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha24 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha23 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha22 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha21 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha20 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha19 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha18 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha17 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha16 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha15 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha14 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha13 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha12 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha11 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha10 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha9 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha8 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha7 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha6 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb