Sha256: e362b0d27eab9374d25d06920b39c00a37b85a662057ce56be028c9f4f220687
Contents?: true
Size: 630 Bytes
Versions: 26
Compression:
Stored size: 630 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 |client| puts "AMQP connection is open: #{client.connection.server_properties.inspect}" channel = AMQ::Client::Channel.new(client, 1) channel.open do puts "Channel #{channel.id} is now open!" puts "Lets close it." channel.close do puts "Closed channel ##{channel.id}" puts client.disconnect do puts puts "AMQP connection is now properly closed" EM.stop end end end end
Version data entries
26 entries across 26 versions & 1 rubygems