Sha256: a5ad458426a76781e5e8a09593c3dc554432233ceccbae4c9eb49a2adde31792
Contents?: true
Size: 968 Bytes
Versions: 68
Compression:
Stored size: 968 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 "Activate or deactivate channel delivery using channel.flow" 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, _, _, _| puts "flow is now #{channel.flow_is_active? ? 'on' : 'off'}" channel.flow(false) do |method| puts "flow is now #{method.active ? 'on' : 'off'}" end sleep 0.1 channel.flow(true) do |method| puts "flow is now #{method.active ? 'on' : 'off'}" 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