Sha256: c2fc6508ec00dd9ed0cbd18d2659457f5bdff1b719b9852754916da34c4954be

Contents?: true

Size: 532 Bytes

Versions: 55

Compression:

Stored size: 532 Bytes

Contents

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

require "bundler"
Bundler.setup

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

require 'amqp'


puts "=> Channel#initialize example that uses a block"
puts
AMQP.start(:host => 'localhost') do |connection|
  AMQP::Channel.new do |channel|
    puts "Channel ##{channel.id} is now open!"
  end


  show_stopper = Proc.new do
    $stdout.puts "Stopping..."

    connection.close {
      EM.stop { exit }
    }
  end

  Signal.trap "INT", show_stopper
  EM.add_timer(2, show_stopper)
end

Version data entries

55 entries across 55 versions & 1 rubygems

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