-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathWorkflowInboundCallsInterceptor.php
More file actions
76 lines (66 loc) · 2.28 KB
/
WorkflowInboundCallsInterceptor.php
File metadata and controls
76 lines (66 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* This file is part of Temporal package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Temporal\Interceptor;
use Temporal\Interceptor\Trait\WorkflowInboundCallsInterceptorTrait;
use Temporal\Interceptor\WorkflowInbound\InitInput;
use Temporal\Interceptor\WorkflowInbound\QueryInput;
use Temporal\Interceptor\WorkflowInbound\SignalInput;
use Temporal\Interceptor\WorkflowInbound\UpdateInput;
use Temporal\Interceptor\WorkflowInbound\WorkflowInput;
use Temporal\Internal\Interceptor\Interceptor;
/**
* It's recommended to use `WorkflowInboundCallsInterceptorTrait` when implementing this interface because
* the interface might be extended in the future. The trait will provide forward compatibility.
*
* ```php
* class MyWorkflowInboundCallsInterceptor implements WorkflowInboundCallsInterceptor
* {
* use WorkflowInboundCallsInterceptorTrait;
*
* public function handleSignal(SignalInput $input, callable $next): void
* {
* Workflow::getLogger()->info('Workflow received signal: ' . $input->signalName);
*
* $next($input);
* }
* }
* ```
*
* @see WorkflowInboundCallsInterceptorTrait
*/
interface WorkflowInboundCallsInterceptor extends Interceptor
{
/**
* Called when workflow instance is initialized, before {@see execute()}.
* Allows interceptors to perform per-workflow-execution setup.
*
* @param callable(InitInput): void $next
*/
public function init(InitInput $input, callable $next): void;
/**
* @param callable(WorkflowInput): void $next
*/
public function execute(WorkflowInput $input, callable $next): void;
/**
* @param callable(SignalInput): void $next
*/
public function handleSignal(SignalInput $input, callable $next): void;
/**
* @param callable(QueryInput): mixed $next
*/
public function handleQuery(QueryInput $input, callable $next): mixed;
/**
* @param callable(UpdateInput): mixed $next
*/
public function handleUpdate(UpdateInput $input, callable $next): mixed;
/**
* @param callable(UpdateInput): void $next
*/
public function validateUpdate(UpdateInput $input, callable $next): void;
}