Skip to content

Commit a18f4f3

Browse files
authored
Merge pull request #54 from longquanzheng/qlong-cancel-childWF
Add sample of cancellation populated from parent to child workflow
2 parents 1fa035a + 897c03f commit a18f4f3

File tree

1 file changed

+155
-0
lines changed

1 file changed

+155
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
/*
2+
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Modifications copyright (C) 2017 Uber Technologies, Inc.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
7+
* use this file except in compliance with the License. A copy of the License is
8+
* located at
9+
*
10+
* http://aws.amazon.com/apache2.0
11+
*
12+
* or in the "license" file accompanying this file. This file is distributed on
13+
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
14+
* express or implied. See the License for the specific language governing
15+
* permissions and limitations under the License.
16+
*/
17+
18+
package com.uber.cadence.samples.hello;
19+
20+
import static com.uber.cadence.samples.common.SampleConstants.DOMAIN;
21+
22+
import com.google.common.base.Throwables;
23+
import com.uber.cadence.activity.ActivityOptions;
24+
import com.uber.cadence.client.WorkflowClient;
25+
import com.uber.cadence.client.WorkflowClientOptions;
26+
import com.uber.cadence.client.WorkflowException;
27+
import com.uber.cadence.client.WorkflowOptions;
28+
import com.uber.cadence.client.WorkflowStub;
29+
import com.uber.cadence.serviceclient.ClientOptions;
30+
import com.uber.cadence.serviceclient.WorkflowServiceTChannel;
31+
import com.uber.cadence.worker.Worker;
32+
import com.uber.cadence.worker.WorkerFactory;
33+
import com.uber.cadence.workflow.CancellationScope;
34+
import com.uber.cadence.workflow.Workflow;
35+
import com.uber.cadence.workflow.WorkflowMethod;
36+
import java.time.Duration;
37+
import java.util.concurrent.CancellationException;
38+
39+
/** Demonstrates how cancellation populated from parent to child workflow */
40+
public class HelloCancelChild {
41+
42+
static final String TASK_LIST = "HelloCancelChild";
43+
44+
public interface GreetingWorkflow {
45+
@WorkflowMethod
46+
String getGreeting(String name);
47+
}
48+
49+
public interface GreetingChild {
50+
@WorkflowMethod
51+
String composeGreeting(String greeting, String name);
52+
}
53+
54+
public interface GreetingActivities {
55+
String sayGoodbye(String name);
56+
}
57+
58+
/** Parent implementation that calls GreetingChild#composeGreeting. */
59+
public static class GreetingWorkflowImpl implements GreetingWorkflow {
60+
61+
@Override
62+
public String getGreeting(String name) {
63+
GreetingChild child = Workflow.newChildWorkflowStub(GreetingChild.class);
64+
return child.composeGreeting("Hello", name);
65+
}
66+
}
67+
68+
/** Child workflow implementation. */
69+
public static class GreetingChildImpl implements GreetingChild {
70+
71+
private final GreetingActivities activities =
72+
Workflow.newActivityStub(
73+
GreetingActivities.class,
74+
new ActivityOptions.Builder()
75+
.setScheduleToCloseTimeout(Duration.ofSeconds(20))
76+
.build());
77+
78+
@Override
79+
public String composeGreeting(String greeting, String name) {
80+
try {
81+
Workflow.sleep(Duration.ofDays(10));
82+
return greeting + name;
83+
// This exception is thrown when a cancellation is requested on the current workflow
84+
} catch (CancellationException e) {
85+
// clean up on cancellation
86+
/**
87+
* Any call to an activity or a child workflow after the workflow is cancelled is going to
88+
* fail immediately with the CancellationException. the DetachedCancellationScope doesn't
89+
* inherit its cancellation status from the enclosing scope. Thus it allows running a
90+
* cleanup activity even if the workflow cancellation was requested.
91+
*/
92+
CancellationScope scope =
93+
Workflow.newDetachedCancellationScope(() -> activities.sayGoodbye(name));
94+
scope.run();
95+
throw e;
96+
}
97+
}
98+
}
99+
100+
static class GreetingActivitiesImpl implements GreetingActivities {
101+
@Override
102+
public String sayGoodbye(String name) {
103+
try {
104+
Thread.sleep(1000 * 10);
105+
} catch (InterruptedException e) {
106+
e.printStackTrace();
107+
}
108+
return name;
109+
}
110+
}
111+
112+
public static void main(String[] args) {
113+
// Get a new client
114+
// NOTE: to set a different options, you can do like this:
115+
// ClientOptions.newBuilder().setRpcTimeout(5 * 1000).build();
116+
WorkflowClient workflowClient =
117+
WorkflowClient.newInstance(
118+
new WorkflowServiceTChannel(ClientOptions.defaultInstance()),
119+
WorkflowClientOptions.newBuilder().setDomain(DOMAIN).build());
120+
// Get worker to poll the task list.
121+
WorkerFactory factory = WorkerFactory.newInstance(workflowClient);
122+
Worker worker = factory.newWorker(TASK_LIST);
123+
worker.registerWorkflowImplementationTypes(GreetingWorkflowImpl.class, GreetingChildImpl.class);
124+
worker.registerActivitiesImplementations(new GreetingActivitiesImpl());
125+
factory.start();
126+
127+
WorkflowOptions workflowOptions =
128+
new WorkflowOptions.Builder()
129+
.setTaskList(TASK_LIST)
130+
.setExecutionStartToCloseTimeout(Duration.ofSeconds(30))
131+
.build();
132+
GreetingWorkflow workflow =
133+
workflowClient.newWorkflowStub(GreetingWorkflow.class, workflowOptions);
134+
try {
135+
// NOTE: strongly typed workflow stub doesn't cancel method.
136+
WorkflowStub stub =
137+
workflowClient.newUntypedWorkflowStub("GreetingWorkflow::getGreeting", workflowOptions);
138+
139+
stub.start("World");
140+
// wait for child workflow to start
141+
Thread.sleep(1000);
142+
143+
// issue cancellation request. This will trigger a CancellationException on the workflow.
144+
stub.cancel();
145+
146+
stub.getResult(String.class);
147+
} catch (WorkflowException | InterruptedException e) {
148+
Throwable cause = Throwables.getRootCause(e);
149+
// prints "Hello World!"
150+
System.out.println(cause.getMessage());
151+
System.out.println("\nStack Trace:\n" + Throwables.getStackTraceAsString(e));
152+
}
153+
System.exit(0);
154+
}
155+
}

0 commit comments

Comments
 (0)