| Current Path : /home/rtorresani/www/vendor/magento/framework-message-queue/Rpc/ |
| Current File : //home/rtorresani/www/vendor/magento/framework-message-queue/Rpc/ResponseQueueNameBuilder.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\MessageQueue\Rpc;
class ResponseQueueNameBuilder
{
/**
* Response queue name prefix
*/
const RESPONSE_QUEUE_PREFIX = 'responseQueue.';
/**
* Get response queue name.
*
* @param string $topicName
* @return string
*/
public function getQueueName($topicName)
{
return self::RESPONSE_QUEUE_PREFIX . str_replace('-', '_', $topicName);
}
}