Sha256: d5bd1bfc1692408688fc8b36bc437f01433470a491c01bd7ddaf69b2fdecf27a
Contents?: true
Size: 733 Bytes
Versions: 68
Compression:
Stored size: 733 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 "Alter prefetching settings using basic.qos" do |client| channel = AMQ::Client::Channel.new(client, 1) channel.open do AMQ::Client::Queue.new(client, channel).declare(false, false, false, true) do |q, _, _, _| channel.qos do |_| puts "basic.qos callback has fired" 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