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