AMQPEnvelope::getExchangeName PHP Method

getExchangeName() public method

Get the exchange name on which the message was published.
public getExchangeName ( ) : string
return string The exchange name on which the message was published.
    public function getExchangeName()
    {
    }

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::getExchangeName