refactor(kernel): unify HTTP and CLI application lifecycle
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user