Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework-amqp
Topology
QueueInstaller.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Amqp\Topology
;
7
8
use
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItemInterface
;
9
13
class
QueueInstaller
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
}
Magento\Framework\Amqp\Topology\QueueInstaller
Definition:
QueueInstaller.php:13
$queue
$queue
Definition:
queue.php:21
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItemInterface
Definition:
QueueConfigItemInterface.php:11
Magento\Framework\Amqp\Topology\QueueInstaller\install
install(\PhpAmqpLib\Channel\AMQPChannel $channel, QueueConfigItemInterface $queue)
Definition:
QueueInstaller.php:24
Magento\Framework\Amqp\Topology
Definition:
ArgumentProcessor.php:6