Sha256: 3c683c7baa8666faf35402473e7aa3a70120e2eb55d71ca631958dda6386219c

Contents?: true

Size: 679 Bytes

Versions: 42

Compression:

Stored size: 679 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? => #{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

42 entries across 42 versions & 1 rubygems

Version Path
amq-client-0.9.0 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.9.0.pre2 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.9.0.pre1 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.7 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.7.pre1 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.6 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.5 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.4 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.3 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.2 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.1 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.8.0 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha35 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha34 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha33 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha32 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha31 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha30 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha29 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb
amq-client-0.7.0.alpha28 examples/eventmachine_adapter/authentication/plain_password_with_default_role_credentials.rb