IoC 和线程单例

发布于 2024-10-10 06:13:03 字数 121 浏览 3 评论 0原文

几种不同的 IoC 容器都支持线程单例。

框架如何知道线程何时超出范围?

例如:如果我使用线程池来做某事,容器如何知道何时创建和处置服务?线程可以用于各种事情,每个任务都需要一个新的服务,不是吗?

Several different IoC containers have support for Thread Singletons.

How do the frameworks know when a thread goes out of scope?

For instance: If I use the Thread Pool to do something, how can the container know when to create and dispose a service? The thread can be used for various of things and each task wants a new service, doesn't it?

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

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

发布评论

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

评论(1

许一世地老天荒 2024-10-17 06:13:04

在 Autofac 中,您可以通过在线程入口点周围创建一个作用域来手动执行此操作(如果需要,可以给出示例)。也许不像隐式线程作用域那么“神奇”,但按照您在这里观察到的情况,它是更容易理解/测试/调试。

恕我直言:)

尼克

In Autofac you'd do this manually by creating a scope around the thread entry point (can give example if required.) Maybe not so 'magic' as implicit thread scoping, but along the lines of what you're observing here, it is much easier to understand/test/debug.

IMHO :)

Nick

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