123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\MessageQueue\Publisher\Config;
- /**
- * Representation of publisher connection configuration.
- */
- interface PublisherConnectionInterface
- {
- /**
- * Get Connection name.
- *
- * @return string
- */
- public function getName();
- /**
- * Get exchange name.
- *
- * @return string
- */
- public function getExchange();
- /**
- * Check if connection disabled.
- *
- * @return bool
- */
- public function isDisabled();
- }
|