feat: Move event runtime implementation into core

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-08-05 22:09:53 -04:00
parent 01ed0f3080
commit a73ca3abd6
10 changed files with 25 additions and 15 deletions
@@ -0,0 +1,14 @@
<?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;
}