加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – .NET Task.Result阻塞(同步)一个线程

发布时间:2020-12-15 08:33:57 所属栏目:百科 来源:网络整理
导读:参见英文答案 What happens while waiting on a Task’s Result?2个 Task.Result是否同步阻止当前线程,以便它在等待任务完成时不能用于执行其他操作? 例如,如果我在ASP.NET执行路径中调用Task.Result,则当前线程在等待结果时不能用于处理其他请求. 顺便问一
参见英文答案 > What happens while waiting on a Task’s Result?2个
Task.Result是否同步阻止当前线程,以便它在等待任务完成时不能用于执行其他操作?

例如,如果我在ASP.NET执行路径中调用Task.Result,则当前线程在等待结果时不能用于处理其他请求.

顺便问一下,C#5.0中的异步怎么样?是否等待异步方法阻止当前线程?

谢谢你的评论.

解决方法

MSDN: https://msdn.microsoft.com/en-us/library/dd321468(v=vs.110).aspx

Accessing the property’s get accessor blocks the calling thread until the asynchronous operation is complete; it is equivalent to calling the Wait method

MSDN:https://msdn.microsoft.com/en-us/library/hh156528.aspx

An await expression does not block the thread on which it is executing

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读