Files
server/core/lib/Event/DeferredEventProcessorInterface.php
T
2026-08-05 22:09:53 -04:00

15 lines
315 B
PHP

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