AMQPQueue
PHP Manual

AMQPQueue::nack

(PECL amqp >= Unknown)

AMQPQueue::nackMark a message as explicitly not acknowledged.

说明

public void AMQPQueue::nack ( string $delivery_tag [, string $flags = AMQP_NOPARAM ] )

Mark the message identified by delivery_tab as explicitly not acknowledged. This method can only be called on messages that have not yet been acknowledged, meaning that messages retrieved with by AMQPQueue::consume() and AMQPQueue::get() and using the AMQP_AUTOACK flag are not eligible.

When called, the broker will immediately put the message back onto the queue, instead of waiting until the connection is closed.

This method is only supported by the RabbitMQ broker. The behavior of calling this method while connected to any other broker is undefined.

参数

delivery_tag

The delivery tag by which to identify the message.

flags

A bitmask of flags.

错误/异常

Throws AMQPChannelException if the channel is not open.

Throws AMQPConnectionException if the connection to the broker was lost.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE.


AMQPQueue
PHP Manual