TaskCreationOptions.LongRunning 选项和 ThreadPool

发布于 2024-09-06 23:09:54 字数 286 浏览 6 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

尐偏执 2024-09-13 23:09:54

是的,LongRunning 强制在池外创建新线程。以下是最新框架版本中的一些伪反汇编代码:

...
if (task.Options HasFlag LongRunning) then
    create new Thread thread
    thread.Start(task)
...

编辑:从丑陋的 C# 转换为伪代码。

Yes, LongRunning forces the creation of a new thread outside the pool. Here's some pseudo-disassembled code from the latest framework version:

...
if (task.Options HasFlag LongRunning) then
    create new Thread thread
    thread.Start(task)
...

Edit: converted from ugly C# to pseudocode.

风情万种。 2024-09-13 23:09:54

想必您可以使用“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

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