WF 4 - 如何对事件做出反应?
有一些关于 WF4 中状态机主题的资源 (WF4 状态机指南,状态机活动包 CTP1),但我不知道如何对事件做出反应?
我想做的是这样的:
myWorkflow.SendEvent(Events.Stored);
并在转换分支中以某种方式捕获触发器中的那个。
有什么想法吗?
There are some resources on the topic of State machines in WF4 (WF4 State Machine Guidance, State machine activity pack CTP1), but I can't figure out how to react to events?
What I would like to do is something like:
myWorkflow.SendEvent(Events.Stored);
And in transition branch to catch that somehow in trigger.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 WF4 中,您可以通过首先在自定义活动中创建书签然后恢复这些书签来发送事件。标准事件驱动的活动(例如接收和延迟)也以这种方式工作。
In WF4 you send events by first creating bookmarks in your custom activities and then resuming these bookmarks. The standard event driven activities like Receive and Delay also work this way.