-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathWorkflowInboundCallsInterceptorTrait.php
More file actions
87 lines (77 loc) · 2.19 KB
/
WorkflowInboundCallsInterceptorTrait.php
File metadata and controls
87 lines (77 loc) · 2.19 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
77
78
79
80
81
82
83
84
85
86
87
<?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\Trait;
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\Interceptor\WorkflowInboundCallsInterceptor;
/**
* Trait that provides a default interceptor implementation.
*
* @see WorkflowInboundCallsInterceptor
*/
trait WorkflowInboundCallsInterceptorTrait
{
/**
* Default implementation of the `init` method.
*
* @see WorkflowInboundCallsInterceptor::init()
*/
public function init(InitInput $input, callable $next): void
{
$next($input);
}
/**
* Default implementation of the `execute` method.
*
* @see WorkflowInboundCallsInterceptor::execute()
*/
public function execute(WorkflowInput $input, callable $next): void
{
$next($input);
}
/**
* Default implementation of the `handleSignal` method.
*
* @see WorkflowInboundCallsInterceptor::handleSignal()
*/
public function handleSignal(SignalInput $input, callable $next): void
{
$next($input);
}
/**
* Default implementation of the `handleQuery` method.
*
* @see WorkflowInboundCallsInterceptor::handleQuery()
*/
public function handleQuery(QueryInput $input, callable $next): mixed
{
return $next($input);
}
/**
* Default implementation of the `handleUpdate` method.
*
* @see WorkflowInboundCallsInterceptor::handleUpdate()
*/
public function handleUpdate(UpdateInput $input, callable $next): mixed
{
return $next($input);
}
/**
* Default implementation of the `validateUpdate` method.
*
* @see WorkflowInboundCallsInterceptor::validateUpdate()
*/
public function validateUpdate(UpdateInput $input, callable $next): void
{
$next($input);
}
}