AMQPEnvelope::getRoutingKey PHP Метод

getRoutingKey() публичный Метод

Get the routing key of the message.
public getRoutingKey ( ) : string
Результат string The message routing key.
    public function getRoutingKey()
    {
    }

Usage Example

Пример #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