Windows Workflow Foundation 4 (WF4) Delay
Posted
by Russ Clark
on Stack Overflow
See other posts from Stack Overflow
or by Russ Clark
Published on 2010-03-26T19:49:49Z
Indexed on
2010/03/26
19:53 UTC
Read the original article
Hit count: 512
I'm working with the the Release Candidate of Visual Studio 2010 using Wf4 to write a new workflow for approving resource requests. In my workflow, I would like for a request to expire after a few days if no approval has been made for the request. We did this in WF 3.5 (Visual Studio 2008) by adding a Delay timer into an EventDrivenActivity parallel to the EventDrivenActivity that was awaiting an approver to come and approve the request. If the Delay expired before an approval was made, the EventDrivenActivity would terminate the request. Does anyone know if there is a similar mechanism for doing this in WF4?
© Stack Overflow or respective owner