Files
server/shared/lib/Event/DeferredEventProcessorInterface.php
T
2026-07-27 00:48:11 -04:00

15 lines
315 B
PHP

<?php
declare(strict_types=1);
namespace KTXF\Event;
interface DeferredEventProcessorInterface
{
public function beginExecution(string $executionId): void;
public function processDeferred(string $executionId): DeferredProcessingResult;
public function discardDeferred(string $executionId): void;
}