Sha256: e91bc034e0f019d0d00f1094a1b2939476f8b99d649fce2faf96a3badc858ccf

Contents?: true

Size: 829 Bytes

Versions: 54

Compression:

Stored size: 829 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 => "a password that is incorrect #{Time.now.to_i}", :on_possible_authentication_failure => Proc.new { |settings|
                                            puts "Authentication failed, as expected, settings are: #{settings.inspect}"

                                            EventMachine.stop
                                          }) do |client|
    raise "Should not really be executed"
  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha27 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha26 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha25 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha24 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha23 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha22 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha21 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha20 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha19 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha18 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha17 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha16 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha15 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb
amq-client-0.7.0.alpha14 examples/eventmachine_adapter/authentication/plain_password_with_incorrect_credentials_handled_with_a_callback.rb