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
ExchangeConfigItem
Binding.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem
;
7
11
class
Binding
implements
BindingInterface
12
{
18
private
$id;
19
25
private
$destinationType;
26
32
private
$destination;
33
38
private
$isDisabled;
39
45
private
$topic;
46
52
private
$arguments;
53
57
public
function
getId
()
58
{
59
return
$this->id;
60
}
61
65
public
function
getDestinationType
()
66
{
67
return
$this->destinationType;
68
}
69
73
public
function
getDestination
()
74
{
75
return
$this->destination;
76
}
77
81
public
function
isDisabled
()
82
{
83
return
$this->isDisabled;
84
}
85
89
public
function
getTopic
()
90
{
91
return
$this->topic;
92
}
93
97
public
function
getArguments
()
98
{
99
return
$this->arguments;
100
}
101
108
public
function
setData
(array
$data
)
109
{
110
$this->
id
= $data[
'id'
];
111
$this->destinationType =
$data
[
'destinationType'
];
112
$this->destination =
$data
[
'destination'
];
113
$this->arguments =
$data
[
'arguments'
];
114
$this->topic =
$data
[
'topic'
];
115
$this->
isDisabled
= $data[
'disabled'
];
116
}
117
}
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\getArguments
getArguments()
Definition:
Binding.php:97
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\getTopic
getTopic()
Definition:
Binding.php:89
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\setData
setData(array $data)
Definition:
Binding.php:108
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\BindingInterface
Definition:
BindingInterface.php:11
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\getDestination
getDestination()
Definition:
Binding.php:73
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\getDestinationType
getDestinationType()
Definition:
Binding.php:65
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\getId
getId()
Definition:
Binding.php:57
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding\isDisabled
isDisabled()
Definition:
Binding.php:81
Magento\Framework\MessageQueue\Topology\Config\ExchangeConfigItem\Binding
Definition:
Binding.php:11