Sha256: 0d9551fe1ff985f8eb94905ff616af2066b141e52e28da04414ad1e4f80b1cc3
Contents?: true
Size: 653 Bytes
Versions: 42
Compression:
Stored size: 653 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 __dir = File.dirname(File.expand_path(__FILE__)) require File.join(__dir, "example_helper") amq_client_example "Open and then close AMQ channel" do |connection| puts "AMQP connection is open: #{connection.server_properties.inspect}" channel = AMQ::Client::Channel.new(connection, 1) channel.open do puts "Channel #{channel.id} is now open!" puts "Lets close it." channel.close do puts "Closed channel ##{channel.id}" puts connection.disconnect do puts puts "AMQP connection is now properly closed" Coolio::Loop.default.stop end end end end
Version data entries
42 entries across 42 versions & 1 rubygems