You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ states:
107
107
108
108
#### Description
109
109
110
-
This example shows a single Operation state with one action that calls the "greeting" function.
110
+
This example shows a single [Operation State](../specification.md#operation-state) with one action that calls the "greeting" function.
111
111
The workflow data input is assumed to be the name of the person to greet:
112
112
113
113
```json
@@ -215,7 +215,7 @@ states:
215
215
216
216
#### Description
217
217
218
-
This example shows a single Event state with one action that calls the "greeting" function.
218
+
This example shows a single [Event State](../specification.md#event-state) with one action that calls the "greeting" function.
219
219
The event state consumes cloud events of type "greetingEventType". When an even with this type
220
220
is consumed, the Event state performs a single action that calls the defined "greeting" function.
221
221
@@ -384,7 +384,7 @@ states:
384
384
385
385
#### Description
386
386
387
-
In this example we show how to iterate over data using the ForEach state.
387
+
In this example we show how to iterate over data using the [ForEach State](../specification.md#foreach-state).
388
388
The state will iterate over a collection of simple math expressions which are
389
389
passed in as the workflow data input:
390
390
@@ -494,7 +494,7 @@ states:
494
494
495
495
#### Description
496
496
497
-
This example uses a parallel state to execute two branches (simple wait states) at the same time.
497
+
This example uses a [Parallel State](../specification.md#parallel-state) to execute two branches (simple wait states) at the same time.
498
498
The completionType type is set to "allOf", which means the parallel state has to wait for both branches
499
499
to finish execution before it can transition (end workflow execution in this case as it is an end state).
500
500
@@ -583,7 +583,7 @@ delay state.
583
583
584
584
#### Description
585
585
586
-
In this example we use an Event-based Switch state to wait for arrival
586
+
In this example we use an Event-based [Switch State](../specification.md#switch-state) to wait for arrival
587
587
of the "VisaApproved", or "VisaRejected" Cloud Events. Depending on which type of event happens,
588
588
the workflow performs a different transition. If none of the events arrive in the defined 1 hour timeout
589
589
period, the workflow transitions to the "HandleNoVisaDecision" state.
@@ -730,7 +730,7 @@ states:
730
730
731
731
#### Description
732
732
733
-
This example shows off the switch state and the subflow action. The workflow is started with application information data as input:
733
+
This example shows off the [Switch State](../specification.md#switch-state) and the subflow action. The workflow is started with application information data as input:
0 commit comments