Sha256: bf1af3be8dfb97fbf66e5c527627222dfcdce65f8f3cd0adbdf21969b5280dc7
Contents?: true
Size: 714 Bytes
Versions: 68
Compression:
Stored size: 714 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 "Rollback acknowledgement transaction using tx.rollback" do |client| channel = AMQ::Client::Channel.new(client, 1) channel.open do channel.tx_select do |_| channel.tx_rollback do |_| puts "Transaction on channel #{channel.id} is now rolled back" end 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