blob: ed1952adaab8e65482a5f63b5ed551bfbff4a131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace Temporal\Tests\Workflow;
use Temporal\Activity\ActivityOptions;
use Temporal\DataConverter\Bytes;
use Temporal\Workflow;
use Temporal\Workflow\WorkflowMethod;
#[Workflow\WorkflowInterface]
class BinaryWorkflow
{
#[WorkflowMethod(name: 'BinaryWorkflow')]
public function handler(
Bytes $input
): iterable {
$opts = ActivityOptions::new()->withStartToCloseTimeout(5);
return yield Workflow::executeActivity('SimpleActivity.sha512', [$input], $opts);
}
}
|