File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
main/java/io/temporal/workflow
test/java/io/temporal/workflow Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1271,7 +1271,7 @@ public static void applyLocalActivityOptions(
1271
1271
* interruption of in-progress handlers by workflow return:
1272
1272
*
1273
1273
* <pre><code>
1274
- * Workflow.await(() -> Workflow.isAllHandlersFinished ());
1274
+ * Workflow.await(() -> Workflow.isEveryHandlerFinished ());
1275
1275
* </pre></code> will eventually have search attributes as:
1276
1276
*
1277
1277
* @return true if all handlers are finished, false otherwise.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class SignalAllHandlersFinished {
39
39
SDKTestWorkflowRule .newBuilder ().setWorkflowTypes (TestSignalWorkflowImpl .class ).build ();
40
40
41
41
@ Test
42
- public void isAllHandlersFinished () {
42
+ public void isEveryHandlerFinished () {
43
43
String workflowId = UUID .randomUUID ().toString ();
44
44
WorkflowClient workflowClient = testWorkflowRule .getWorkflowClient ();
45
45
WorkflowOptions options =
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public class UpdateAllHandlersFinished {
42
42
SDKTestWorkflowRule .newBuilder ().setWorkflowTypes (TestUpdateWorkflowImpl .class ).build ();
43
43
44
44
@ Test
45
- public void isAllHandlersFinished () throws ExecutionException , InterruptedException {
45
+ public void isEveryHandlerFinished () throws ExecutionException , InterruptedException {
46
46
String workflowId = UUID .randomUUID ().toString ();
47
47
WorkflowClient workflowClient = testWorkflowRule .getWorkflowClient ();
48
48
WorkflowOptions options =
You can’t perform that action at this time.
0 commit comments