TaskCreationOptions.LongRunning 选项和 ThreadPool
TPL 使用任务调度程序来协调任务。根据官方文档,默认任务调度程序使用线程池,但是如果< code>TaskCreationOptions.LongRunning 选项出现后,它将为该任务创建一个专用线程 (A)。
问题:截至目前,Visual Studio 2010 的 MSDN 文档尚未准备好,当前的在线 MSDN 尚未最终确定;有谁知道(A)是真是假?
TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning
option is presented then it will create a dedicated thread for that task (A).
Question: As of now MSDN documents for Visual Studio 2010 are not ready and current online MSDN is not finalized; does anyone knows if (A) is true or false?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,
LongRunning
强制在池外创建新线程。以下是最新框架版本中的一些伪反汇编代码:编辑:从丑陋的 C# 转换为伪代码。
Yes,
LongRunning
forces the creation of a new thread outside the pool. Here's some pseudo-disassembled code from the latest framework version:Edit: converted from ugly C# to pseudocode.
想必您可以使用“Thread.IsThreadPoolThread”进行检查:
http://msdn.microsoft.com/en-us/library/system.threading.thread.isthreadpoolthread.aspx
Presumably you can check this by using "Thread.IsThreadPoolThread":
http://msdn.microsoft.com/en-us/library/system.threading.thread.isthreadpoolthread.aspx