Skip to content

Commit ed6ffc4

Browse files
authored
Update 1.4.0.md
1 parent b2e9186 commit ed6ffc4

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

ReleaseNotes/1.4.0.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,16 +108,24 @@ Full details of the capabilities of expression language can be found [here](htt
108108

109109
The `.WaitFor` can be implemented using 3 inputs as follows
110110

111+
| Field | Description |
112+
| ---------------------- | --------------------------- |
113+
| CancelCondition | Optional expression to specify a cancel condition |
114+
| Inputs.EventName | Expression to specify the event name |
115+
| Inputs.EventKey | Expression to specify the event key |
116+
| Inputs.EffectiveDate | Optional expression to specify the effective date |
117+
118+
111119
```json
112120
{
113121
"Id": "MyWaitStep",
114122
"StepType": "WorkflowCore.Primitives.WaitFor, WorkflowCore",
115123
"NextStepId": "...",
116-
"CancelCondition": "...", //Optional expression to specify a cancel condition
124+
"CancelCondition": "...",
117125
"Inputs": {
118-
"EventName": "\"Event1\"", //Expression to specify the event name
119-
"EventKey": "\"Key1\"", //Expression to specify the event key
120-
"EffectiveDate": "DateTime.Now" //Expression to specify the effective date
126+
"EventName": "\"Event1\"",
127+
"EventKey": "\"Key1\"",
128+
"EffectiveDate": "DateTime.Now"
121129
}
122130
}
123131
```
@@ -218,7 +226,7 @@ The `.Parallel` can be implemented as follows
218226
"StepType": "WorkflowCore.Primitives.Sequence, WorkflowCore",
219227
"NextStepId": "...",
220228
"Do": [
221-
[ //Branch 1
229+
[ /* Branch 1 */
222230
{
223231
"Id": "Branch1.Step1",
224232
"StepType": "MyApp.DoSomething1, MyApp",
@@ -229,7 +237,7 @@ The `.Parallel` can be implemented as follows
229237
"StepType": "MyApp.DoSomething2, MyApp"
230238
}
231239
],
232-
[ //Branch 2
240+
[ /* Branch 2 */
233241
{
234242
"Id": "Branch2.Step1",
235243
"StepType": "MyApp.DoSomething1, MyApp",

0 commit comments

Comments
 (0)