Your IP : 216.73.216.208
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\MessageQueue;
/**
* Factory class for @see \Magento\Framework\MessageQueue\ExchangeInterface
*
* @api
* @since 103.0.0
*/
interface ExchangeFactoryInterface
{
/**
* Create exchange instance.
*
* @param string $connectionName
* @param array $data
* @return ExchangeInterface
* @since 103.0.0
*/
public function create($connectionName, array $data = []);
}