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-message-queue
Topology
Config
QueueConfigItem.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\MessageQueue\Topology\Config
;
7
11
class
QueueConfigItem
implements
QueueConfigItemInterface
12
{
18
private
$name;
19
25
private
$connection;
26
32
private
$arguments;
33
39
private
$isDurable;
40
46
private
$isAutoDelete;
47
51
public
function
getName
()
52
{
53
return
$this->name;
54
}
55
59
public
function
getConnection
()
60
{
61
return
$this->connection;
62
}
63
67
public
function
getArguments
()
68
{
69
return
$this->arguments;
70
}
71
75
public
function
isDurable
()
76
{
77
return
$this->isDurable;
78
}
79
83
public
function
isAutoDelete
()
84
{
85
return
$this->isAutoDelete;
86
}
87
94
public
function
setData
(array
$data
)
95
{
96
$this->
name
=
$data
[
'name'
];
97
$this->connection =
$data
[
'connection'
];
98
$this->
isDurable
= $data[
'durable'
];
99
$this->
isAutoDelete
= $data[
'autoDelete'
];
100
$this->arguments =
$data
[
'arguments'
];
101
}
102
}
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItemInterface
Definition:
QueueConfigItemInterface.php:11
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\setData
setData(array $data)
Definition:
QueueConfigItem.php:94
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem
Definition:
QueueConfigItem.php:11
name
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\getName
getName()
Definition:
QueueConfigItem.php:51
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\isDurable
isDurable()
Definition:
QueueConfigItem.php:75
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\getConnection
getConnection()
Definition:
QueueConfigItem.php:59
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\isAutoDelete
isAutoDelete()
Definition:
QueueConfigItem.php:83
Magento\Framework\MessageQueue\Topology\Config
Definition:
CompositeReader.php:6
Magento\Framework\MessageQueue\Topology\Config\QueueConfigItem\getArguments
getArguments()
Definition:
QueueConfigItem.php:67