AzuraCast/src/Message/RunSyncTaskMessage.php

32 lines
655 B
PHP

<?php
declare(strict_types=1);
namespace App\Message;
use App\Environment;
use App\MessageQueue\QueueManagerInterface;
class RunSyncTaskMessage extends AbstractUniqueMessage
{
public string $type;
/** @var string|null The path to log output of the Backup command to. */
public ?string $outputPath = null;
public function getIdentifier(): string
{
return 'SyncTask_' . $this->type;
}
public function getTtl(): ?float
{
return Environment::getInstance()->getSyncLongExecutionTime();
}
public function getQueue(): string
{
return QueueManagerInterface::QUEUE_HIGH_PRIORITY;
}
}