Sha256: d84b3017c03e91a89e243804b3ff8a7e74eee1cf60855d7e778de54ec8fafd9f

Contents?: true

Size: 779 Bytes

Versions: 66

Compression:

Stored size: 779 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     => "amq_client_gem",
                                          :password => "amq_client_gem_password") do |client|
    puts "Connected, authenticated"


    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

66 entries across 66 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha7 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb
amq-client-0.7.0.alpha6 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb
amq-client-0.7.0.alpha5 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb
amq-client-0.7.0.alpha4 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb
amq-client-0.7.0.alpha3 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb
amq-client-0.7.0.alpha2 examples/eventmachine_adapter/authentication/plain_password_with_custom_role_credentials.rb