blob: 8a2303f41d6b4187aacdbe1815cac2a61aa886d3 (
plain)
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
|
<?php
declare(strict_types=1);
namespace Temporal\Tests\Workflow;
use Temporal\Activity\ActivityOptions;
use Temporal\Promise;
use Temporal\Workflow;
use Temporal\Workflow\WorkflowMethod;
use Temporal\Tests\Activity\SimpleActivity;
#[Workflow\WorkflowInterface]
class ParallelScopesWorkflow
{
#[WorkflowMethod(name: 'ParallelScopesWorkflow')]
public function handler(string $input)
{
$simple = Workflow::newActivityStub(
SimpleActivity::class,
ActivityOptions::new()->withStartToCloseTimeout(5)
);
$a = Workflow::newCancellationScope(function () use ($simple, $input) {
return yield $simple->echo($input);
});
$b = Workflow::newCancellationScope(function () use ($simple, $input) {
return yield $simple->lower($input);
});
[$ra, $rb] = yield Promise::all([$a, $b]);
return sprintf('%s|%s|%s', $ra, $input, $rb);
}
}
|