How to use WaitFor in a step #1151
Unanswered
ChrisBertrand
asked this question in
Q&A
Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How do I correctly implement WaitFor in a step?
I've got the following step that waits for a event before completing.
return ExecutionResult.WaitForEvent("Event", "0", DateTime.Now);
and then a API call that uses:
await _workflowController.PublishEvent("Event", "0", "", DateTime.Now);
but this doesn't complete the step and move onto the next in the Workflow.
This always sits at the WaitFor step. What am I doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions