Skip to content

Commit efb6d06

Browse files
Readme updates for release (#746)
* Readme updates for release Signed-off-by: Francisco Javier Tirado Sarti <[email protected]> * Cleaning up README * Readding Status Table --------- Signed-off-by: Francisco Javier Tirado Sarti <[email protected]> Co-authored-by: Ricardo Zanini <[email protected]>
1 parent 6377ad1 commit efb6d06

File tree

3 files changed

+238
-129
lines changed

3 files changed

+238
-129
lines changed

examples/events/src/main/java/events/EventExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void main(String[] args) throws IOException {
3737
WorkflowInstance waitingInstance = listenDefinition.instance(Map.of());
3838
waitingInstance
3939
.start()
40-
.thenAccept(node -> logger.info("Waiting instance completed with result {}", node));
40+
.thenAccept(output -> logger.info("Waiting instance completed with result {}", output));
4141
logger.info("Listen instance waiting for proper event, Status {}", waitingInstance.status());
4242
logger.info("Publishing event with temperature 35");
4343
emitDefinition.instance(Map.of("temperature", 35)).start().join();

examples/simpleGet/src/main/java/io/serverlessworkflow/impl/NotBlockingExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static void main(String[] args) throws IOException {
3030
appl.workflowDefinition(WorkflowReader.readWorkflowFromClasspath("get.yaml"))
3131
.instance(Map.of("petId", 10))
3232
.start()
33-
.thenAccept(node -> logger.info("Workflow output is {}", node));
33+
.thenAccept(output -> logger.info("Workflow output is {}", output));
3434
logger.info("The request has been sent, this thread might continue doing stuff");
3535
}
3636
}

0 commit comments

Comments
 (0)