Sha256: a05f912ce3dc4123e15c839bc435c1fe7d82775a0171b0abeb3c58074d57fd2b

Contents?: true

Size: 1.35 KB

Versions: 30

Compression:

Stored size: 1.35 KB

Contents

#!/usr/bin/env ruby
# encoding: utf-8

require "bundler"
Bundler.setup

$:.unshift(File.expand_path("../../../lib", __FILE__))

require 'amqp'


class ConnectionManager

  #
  # API
  #

  def connect(*args, &block)
    @connection = AMQP.connect(*args, &block)

    # combines Object#method and Method#to_proc to use object
    # method as a callback
    @connection.on_error(&method(:on_error))
  end # connect(*args, &block)


  def on_error(connection, connection_close)
    puts "Handling a connection-level exception."
    puts
    puts "AMQP class id : #{connection_close.class_id}"
    puts "AMQP method id: #{connection_close.method_id}"
    puts "Status code   : #{connection_close.reply_code}"
    puts "Error message : #{connection_close.reply_text}"
  end # on_error(connection, connection_close)
end

EventMachine.run do
  manager = ConnectionManager.new
  manager.connect(:host => '127.0.0.1', :port => 5672) do |connection|
    puts "Connected to RabbitMQ. Running #{AMQP::VERSION} version of the gem..."

    # send_frame is NOT part of the public API, but it is public for entities like AMQ::Client::Channel
    # and we use it here to trigger a connection-level exception. MK.
    connection.send_frame(AMQ::Protocol::Connection::TuneOk.encode(1000, 1024 * 128 * 1024, 10))
  end

  # shut down after 2 seconds
  EventMachine.add_timer(2) { EventMachine.stop }
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
amqp-1.8.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.7.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.6.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.5.3 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.5.2 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.5.1 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.5.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.4.2 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.4.1 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.4.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.3.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.2.1 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.2.0 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.8 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.7 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.6 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.5 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.4 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.1.3 examples/error_handling/connection_level_exception_with_objects.rb
amqp-1.0.4 examples/error_handling/connection_level_exception_with_objects.rb