Skip to content

Commit 2204cf0

Browse files
authored
Update README.md
1 parent b608f90 commit 2204cf0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

impl/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ try (WorkflowApplication appl = WorkflowApplication.builder().build()) {
112112
.join());
113113
}
114114
```
115-
You can find the complete java code [here](../examples/simpleGet/src/main/java/BlockingExample.java)
115+
You can find the complete java code [here](../examples/simpleGet/src/main/java/io/serverlessworkflow/impl/BlockingExample.java)
116116

117117
In order to execute the workflow without blocking the calling thread till the HTTP request is completed, you should write
118118

@@ -131,7 +131,7 @@ When the HTTP request is done, both examples will print a similar output
131131
Workflow output is {"id":10,"category":{"id":10,"name":"string"},"name":"doggie","photoUrls":["string"],"tags":[{"id":10,"name":"string"}],"status":"string"}
132132
```
133133

134-
You can find the complete java code [here](../examples/simpleGet/src/main/java/NotBlockingExample.java)
134+
You can find the complete java code [here](../examples/simpleGet/src/main/java/io/serverlessworkflow/impl/NotBlockingExample.java)
135135

136136
### Detailed version
137137

@@ -190,5 +190,5 @@ After that, listen instance will be completed and we will see this log message
190190
```java
191191
[pool-1-thread-1] INFO events.EventExample - Waiting instance completed with result [{"temperature":39}]
192192
```
193-
The source code of the example is [here](../examples/events/src/main/java/EventExample.java)
193+
The source code of the example is [here](../examples/events/src/main/java/events/EventExample.java)
194194

0 commit comments

Comments
 (0)