IoC 和线程单例
几种不同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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