Sha256: 0ef56f47fedfac1aa4753a0cc4cc0a0182a9e51868bffc377ccfcd0c07b60ead
Contents?: true
Size: 678 Bytes
Versions: 68
Compression:
Stored size: 678 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 "Choose to use acknowledgement transactions on a channel using tx.select" do |client| channel = AMQ::Client::Channel.new(client, 1) channel.open do channel.tx_select do puts "Channel #{channel.id} is now using ack transactions" end show_stopper = Proc.new { client.disconnect do puts puts "AMQP connection is now properly closed" EM.stop end } Signal.trap "INT", show_stopper Signal.trap "TERM", show_stopper EM.add_timer(1, show_stopper) end end
Version data entries
68 entries across 68 versions & 1 rubygems