Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
valid_queue_input.php
Go to the documentation of this file.
1 <?php
7 return [
8  'queue' => [
9  'publishers' => [
10  'demo-publisher-1' => [
11  'name' => 'demo-publisher-1',
12  'connection' => 'amqp',
13  "exchange" => "magento"
14  ],
15  "test-publisher-5" => [
16  "name" => "test-publisher-5",
17  "connection" => "amqp",
18  "exchange" => "test-exchange-10"
19  ]
20  ],
21  "topics" => [
22  "publisher5.topic" => [
23  "name" => "publisher5.topic",
24  "schema" => [
25  "schema_type" => "object",
26  "schema_value" => "Magento\\MysqlMq\\Model\\DataObject"
27  ],
28  "response_schema" => [
29  "schema_type" => "object",
30  "schema_value" => "Magento\\Customer\\Api\\Data\\CustomerInterface"
31  ],
32  "publisher" => "test-publisher-5"
33  ]
34  ],
35  "binds" => [
36  "publisher5.topic--test-exchange-10--demo-queue-1" => [
37  "queue" => "demo-queue-1",
38  "exchange" => "test-exchange-10",
39  "topic" => "publisher5.topic"
40  ]
41  ],
42  "exchange_topic_to_queues_map" => [
43  "test-exchange-10--publisher5.topic" => [
44  "demo-queue-1"
45  ]
46  ]
47  ]
48 ];