WF 4 Activity私有成员线程安全
我有一个工作流程,一旦应用程序启动,我就会从数据库加载,之后我在同一工作流程对象上创建一个工作流程调用器实例并调用它。
我知道所有运行时特定信息都包含在 ActivityContext 中,因此我读/写的任何值都是线程安全的。
我想知道活动的私有成员是否也是线程安全的?
I have a workflow that i load from db once the app starts, after that all i create a workflowinvoker instance on the same workflow object and invoke it.
I understand that all the runtime specific information is contained with in ActivityContext, so any values i read/write to it would thread safe.
I am wondering if the private members of activities are also thread safe ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。您必须对所有属性使用 ActivityContext 的原因是为了让 WF 运行时了解存储的数据,并在需要时保留和恢复数据。如果你创建自己的私人领域,他们就不会配合。
No. The reason you must use the ActivityContext for all properties is so that the WF runtime is aware of the data stored and that data will be persisted and restored when needed. If you create your own private fields they will not play along.