1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\MessageQueue\Consumer\Config\ConsumerConfigItem;
- /**
- * Representation of message queue handler configuration.
- */
- interface HandlerInterface
- {
- /**
- * Get handler type name.
- *
- * @return string
- */
- public function getType();
- /**
- * Get handler method name.
- *
- * @return string
- */
- public function getMethod();
- }
|