123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\MessageQueue\Publisher\Config;
- /**
- * Instances of this class represent config items declared in etc/queue_publisher.xsd
- */
- interface PublisherConfigItemInterface
- {
- /**
- * Get publisher name.
- *
- * @return string
- */
- public function getTopic();
- /**
- * Check if connection disabled.
- *
- * @return bool
- */
- public function isDisabled();
- /**
- * Get publisher connection.
- *
- * @return PublisherConnectionInterface
- */
- public function getConnection();
- }
|