继承 ThreadStatic 值以在多线程上下文中的 C#/.NET 中实现动态作用域

发布于 2024-08-18 18:48:23 字数 125 浏览 5 评论 0原文

有没有办法让新生成的线程继承其父线程上的 ThreadStatic 状态(或类似的状态)的值?我想使用它(或类似的东西)来实现“动态范围”特殊变量,其中包含用于跟踪/日志记录等的操作/任务上下文信息。这是一种合理的方法吗?它可以工作吗?

Is there a way to make newly-spawned threads inherit the values of ThreadStatic state (or something like it) on their parent threads? I would like to use this (or something like it) to implement "dynamically scoped" special variables that contain operation/task context information to use for tracking/logging, etc. Is this a reasonable approach, and can it be made to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇纵 2024-08-25 18:48:23

你不能“继承”价值观。但是,新的 ThreadLocal .NET 4 的类 允许您在 构造函数,它可以根据父级的状态初始化线程。这将提供一个合理的解决方法。

You can't "inherit" values. However, the new ThreadLocal<T> class for .NET 4 allows you to provide a Func<T> in the constructor, which can initialize the thread based on the parent's state. This would provide a reasonable workaround.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文