C#工作流,如何中断执行
目前我正在使用故障处理程序来中断执行,例如:
State1: 处理外部事件 -> MyCode(可能抛出异常) ->更改状态2
-> 故障处理程序 ->没有代码(即保持在状态1)
但是我遇到了性能问题,是否可以在不使用异常/故障句柄(例如取消或返回方法)的情况下执行相同的操作,
谢谢。
At the moment I am using fault handlers to break out of execution e.g:
State1:
HandleExternalEvent
-> MyCode (possibly throw exception)
-> Change state2
->Fault handler
->no code (i.e stays in state1)
However I am suffering from a performace hit, is there away to perform the same action without using exceptions/fault handle, like a cancel or return method
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SuspendActivity 暂停工作流,然后稍后可以通过 ReceiveActivity 或类似的东西与其交互。
You can use the SuspendActivity to pause a workflow, and then maybe interact with it later through a ReceiveActivity or something similar.