AMQPEnvelope::getRoutingKey PHP Méthode

getRoutingKey() public méthode

Get the routing key of the message.
public getRoutingKey ( ) : string
Résultat string The message routing key.
    public function getRoutingKey()
    {
    }

Usage Example

Exemple #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::getRoutingKey