/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/_files/Magento/TestModuleMessageQueueConfiguration/etc/communication.xml
30 строк
2 KB
Dnyaneshwar Jambhulkar
AC-14558::Migration form RabbitMQ to Apache ActiveMQ
24 июл 2025, 19:49
24 июл 2025, 19:49
dd0d09b
Код
Авторство
О чём код?
<?xml version="1.0"?> <!-- /** * Copyright 2016 Adobe * All Rights Reserved. */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Communication/etc/communication.xsd"> <topic name="deprecated.config.async.bool.topic" request="bool"> <handler name="handler1" type="Magento\TestModuleMessageQueueConfiguration\AsyncHandler" method="methodWithBoolParam"/> <handler name="handler2" type="Magento\TestModuleMessageQueueConfiguration\AsyncHandler" method="methodWithMixedParam"/> </topic> <topic name="deprecated.config.async.string.topic" request="string"/> <topic name="deprecated.config.sync.string.topic" request="string" response="string"> <handler name="handler1" type="Magento\TestModuleMessageQueueConfiguration\SyncHandler" method="methodWithStringParam"/> </topic> <topic name="deprecated.config.sync.bool.topic" schema="Magento\TestModuleMessageQueueConfiguration\SyncHandler::methodWithBoolParam"> <handler name="handler1" type="Magento\TestModuleMessageQueueConfiguration\SyncHandler" method="methodWithBoolParam"/> </topic> <topic name="overlapping.topic.declaration" request="string"> <handler name="handler1" type="Magento\TestModuleMessageQueueConfiguration\AsyncHandler" method="methodWithStringParam"/> </topic> <topic name="anotherTopic1" request="string"/> <topic name="anotherTopic2" request="string"/> <!-- Stomp topics --> <topic name="stomp.topic.declaration" request="string"> <handler name="handler1" type="Magento\TestModuleMessageQueueConfiguration\AsyncHandler" method="methodWithStringParam"/> </topic> </config>