Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/framework-message-queue/Rpc/
Upload File :
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);
    }
}