lib/amqp/consumer.rb in amqp-1.0.0.pre2 vs lib/amqp/consumer.rb in amqp-1.0.0
- old
+ new
@@ -137,19 +137,19 @@
# Acknowledge a delivery tag.
# @return [Consumer] self
#
# @api public
- # @see http://bit.ly/htCzCX AMQP 0.9.1 protocol documentation (Section 1.8.3.13.)
+ # @see http://files.travis-ci.org/docs/amqp/0.9.1/AMQP091Reference.pdf AMQP 0.9.1 protocol documentation (Section 1.8.3.13.)
def acknowledge(delivery_tag)
super(delivery_tag)
end # acknowledge(delivery_tag)
#
# @return [Consumer] self
#
# @api public
- # @see http://bit.ly/htCzCX AMQP 0.9.1 protocol documentation (Section 1.8.3.14.)
+ # @see http://files.travis-ci.org/docs/amqp/0.9.1/AMQP091Reference.pdf AMQP 0.9.1 protocol documentation (Section 1.8.3.14.)
def reject(delivery_tag, requeue = true)
super(delivery_tag, requeue)
end # reject(delivery_tag, requeue = true)
# @endgroup