コード例 #1
0
 public static function castQueue(\AMQPQueue $c, array $a, Stub $stub, $isNested)
 {
     $prefix = Caster::PREFIX_VIRTUAL;
     $a += array($prefix . 'name' => $c->getName(), $prefix . 'flags' => self::extractFlags($c->getFlags()), $prefix . 'arguments' => $c->getArguments(), $prefix . 'connection' => $c->getConnection(), $prefix . 'channel' => $c->getChannel());
     return $a;
 }
コード例 #2
0
ファイル: Queue.php プロジェクト: treehouselabs/queue
 /**
  * @inheritdoc
  */
 public function getArguments()
 {
     return $this->delegate->getArguments();
 }
コード例 #3
0
ファイル: Queue.php プロジェクト: prolic/HumusAmqp
 /**
  * @inheritdoc
  */
 public function getArguments() : array
 {
     return $this->queue->getArguments();
 }
コード例 #4
0
ファイル: Queue.php プロジェクト: csharpru/yii2-amqp
 /**
  * @return array
  */
 public function getArguments()
 {
     return $this->rawQueue->getArguments();
 }