| Current Path : /home/rtorresani/www/vendor/magento/framework-message-queue/ |
| Current File : //home/rtorresani/www/vendor/magento/framework-message-queue/MessageIdGeneratorInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\MessageQueue;
/**
* Used to generate unique id for queue message.
*
* @api
* @since 103.0.0
*/
interface MessageIdGeneratorInterface
{
/**
* Generate unique message id based on topic name.
*
* @param string $topicName
* @return string
* @since 103.0.0
*/
public function generate($topicName);
}