Sha256: a327dc6a98252a2471052d70a061f174cc18fd91fbe2ecb72134dfe8c3f6bfb2

Contents?: true

Size: 580 Bytes

Versions: 54

Compression:

Stored size: 580 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

require "bundler"
Bundler.setup

$:.unshift(File.expand_path("../../../lib", __FILE__))

require 'amqp'


puts "=> Channel#prefetch"
puts
AMQP.start(:host => 'localhost') do |connection|
  ch = AMQP::Channel.new
  ch.on_error do |ch, channel_close|
    raise "Oops! a channel-level exception: #{channel_close.inspect}"
  end
  ch.prefetch(1, false)


  show_stopper = Proc.new do
    $stdout.puts "Stopping..."

    connection.close {
      EM.stop { exit }
    }
  end

  Signal.trap "INT", show_stopper
  EM.add_timer(1, show_stopper)
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
amqp-1.8.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.7.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.6.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.5.3 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.5.2 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.5.1 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.5.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.4.2 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.4.1 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.4.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.3.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.2.1 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.2.0 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.8 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.7 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.6 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.5 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.4 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.1.3 examples/channels/qos_aka_prefetch_without_callback.rb
amqp-1.0.4 examples/channels/qos_aka_prefetch_without_callback.rb