From 0043cc8f01c993ca9dca58d3f9cd3267cb784810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Mendoza=20P=C3=A9rez?= Date: Tue, 30 Apr 2024 20:01:00 +0200 Subject: [PATCH] fix readme --- .../src/main/java/io/temporal/samples/taskinteraction/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/temporal/samples/taskinteraction/README.md b/core/src/main/java/io/temporal/samples/taskinteraction/README.md index 065f330b..522254c9 100644 --- a/core/src/main/java/io/temporal/samples/taskinteraction/README.md +++ b/core/src/main/java/io/temporal/samples/taskinteraction/README.md @@ -5,7 +5,7 @@ which can be easily implemented as follows: - The main workflow [WorkflowWithTasks](./WorkflowWithTasks.java) have an activity (or local activity) that send the request to an external service. The _external service_, for this example, is another workflow ([WorkflowTaskManager](WorkflowTaskManager.java)), that takes care of the task life-cicle. -- The main workflow waits, with `Workflow.await`, to receive a Signal. +- The main workflow waits to receive a Signal. - The _external service_ signal back the main workflow to unblock it.