Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
QueueInstaller.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
15  use ArgumentProcessor;
16 
24  public function install(\PhpAmqpLib\Channel\AMQPChannel $channel, QueueConfigItemInterface $queue)
25  {
26  $channel->queue_declare(
27  $queue->getName(),
28  false,
29  $queue->isDurable(),
30  false,
31  $queue->isAutoDelete(),
32  false,
33  $this->processArguments($queue->getArguments())
34  );
35  }
36 }
$queue
Definition: queue.php:21
install(\PhpAmqpLib\Channel\AMQPChannel $channel, QueueConfigItemInterface $queue)