@@ -108,16 +108,24 @@ Full details of the capabilities of expression language can be found [here](htt
108
108
109
109
The ` .WaitFor ` can be implemented using 3 inputs as follows
110
110
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
+
111
119
``` json
112
120
{
113
121
"Id" : " MyWaitStep" ,
114
122
"StepType" : " WorkflowCore.Primitives.WaitFor, WorkflowCore" ,
115
123
"NextStepId" : " ..." ,
116
- "CancelCondition" : " ..." , //Optional expression to specify a cancel condition
124
+ "CancelCondition" : " ..." ,
117
125
"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"
121
129
}
122
130
}
123
131
```
@@ -218,7 +226,7 @@ The `.Parallel` can be implemented as follows
218
226
"StepType" : " WorkflowCore.Primitives.Sequence, WorkflowCore" ,
219
227
"NextStepId" : " ..." ,
220
228
"Do" : [
221
- [ // Branch 1
229
+ [ /* Branch 1 */
222
230
{
223
231
"Id" : " Branch1.Step1" ,
224
232
"StepType" : " MyApp.DoSomething1, MyApp" ,
@@ -229,7 +237,7 @@ The `.Parallel` can be implemented as follows
229
237
"StepType" : " MyApp.DoSomething2, MyApp"
230
238
}
231
239
],
232
- [ // Branch 2
240
+ [ /* Branch 2 */
233
241
{
234
242
"Id" : " Branch2.Step1" ,
235
243
"StepType" : " MyApp.DoSomething1, MyApp" ,
0 commit comments