| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework-message-queue/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework-message-queue/QueueFactoryInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\MessageQueue;
/**
* Factory class for @see \Magento\Framework\MessageQueue\QueueInterface
*
* @api
* @since 103.0.0
*/
interface QueueFactoryInterface
{
/**
* Create queue instance.
*
* @param string $queueName
* @param string $connectionName
* @return QueueInterface
* @since 103.0.0
*/
public function create($queueName, $connectionName);
}