AMQPEnvelope::getDeliveryTag PHP Method

getDeliveryTag() public method

Get the delivery tag of the message.
public getDeliveryTag ( ) : string
return string The delivery tag of the message.
    public function getDeliveryTag()
    {
    }

Usage Example

Exemplo n.º 1
0
 public function getEnvelope()
 {
     if (!$this->envelope) {
         $class = $this->envelope_skeleton;
         $this->envelope = new $class($this->original->getExchangeName(), $this->original->getRoutingKey(), $this->original->getDeliveryTag(), $this->original->isRedelivery());
     }
     return $this->envelope;
 }
All Usage Examples Of AMQPEnvelope::getDeliveryTag