summaryrefslogtreecommitdiff
path: root/tests/temporal/Workflow/SagaWorkflow.php
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-27 13:56:28 +0300
committerValery Piashchynski <[email protected]>2021-01-27 13:56:28 +0300
commit744c2b0c86b88f77e681f8660bf3a476e83711b8 (patch)
treef7af7d7d494d1f5ca272af1ad0b978fe44d685a9 /tests/temporal/Workflow/SagaWorkflow.php
parente2266b80db47444ba5858c736833a8a81b1361ad (diff)
Move temporal plugin to the temporal repository
Diffstat (limited to 'tests/temporal/Workflow/SagaWorkflow.php')
-rw-r--r--tests/temporal/Workflow/SagaWorkflow.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/temporal/Workflow/SagaWorkflow.php b/tests/temporal/Workflow/SagaWorkflow.php
deleted file mode 100644
index e47c0203..00000000
--- a/tests/temporal/Workflow/SagaWorkflow.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?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.
- */
-
-namespace Temporal\Tests\Workflow;
-
-use Temporal\Activity\ActivityOptions;
-use Temporal\Common\RetryOptions;
-use Temporal\Tests\Activity\SimpleActivity;
-use Temporal\Workflow;
-
-#[Workflow\WorkflowInterface]
-class SagaWorkflow
-{
- #[Workflow\WorkflowMethod(name: 'SagaWorkflow')]
- public function run()
- {
- $simple = Workflow::newActivityStub(
- SimpleActivity::class,
- ActivityOptions::new()
- ->withStartToCloseTimeout(60)
- ->withRetryOptions(RetryOptions::new()->withMaximumAttempts(1))
- );
-
- $saga = new Workflow\Saga();
- $saga->setParallelCompensation(true);
-
- try {
- yield $simple->echo('test');
- $saga->addCompensation(
- function () use ($simple) {
- yield $simple->echo('compensate echo');
- }
- );
-
- yield $simple->lower('TEST');
- $saga->addCompensation(
- function () use ($simple) {
- yield $simple->lower('COMPENSATE LOWER');
- }
- );
-
- yield $simple->fail();
- } catch (\Throwable $e) {
- yield $saga->compensate();
- throw $e;
- }
- }
-}