65c1b5fb75
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
15 lines
315 B
PHP
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;
|
|
}
|