/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/MessageQueue/Publisher/Config/PublisherConfigItemInterface.php
41 строка
725 B
Dnyaneshwar Jambhulkar
AC-14558::Migration form RabbitMQ to Apache ActiveMQ
21 июл 2025, 18:35
21 июл 2025, 18:35
446a6f3
Код
Авторство
О чём код?
<?php /** * Copyright 2016 Adobe * All Rights Reserved. */ namespace Magento\Framework\MessageQueue\Publisher\Config; /** * Instances of this class represent config items declared in etc/queue_publisher.xsd * @api */ interface PublisherConfigItemInterface { /** * Get publisher name. * * @return string */ public function getTopic(); /** * Get queue name. * * @return string */ public function getQueue(); /** * Check if connection disabled. * * @return bool */ public function isDisabled(); /** * Get publisher connection. * * @return PublisherConnectionInterface */ public function getConnection(); }