AzuraCast/src/MessageQueue/UniqueMessageInterface.php

13 lines
183 B
PHP

<?php
declare(strict_types=1);
namespace App\MessageQueue;
interface UniqueMessageInterface
{
public function getIdentifier(): string;
public function getTtl(): ?float;
}