Sha256: 08c922fb59c85c65ebf508d34ff3c26994835baf55a5b97add2a60c8bec8fcef
Contents?: true
Size: 635 Bytes
Versions: 42
Compression:
Stored size: 635 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" EM.stop end end end end
Version data entries
42 entries across 42 versions & 1 rubygems