What#39;s the difference between QueueUserWorkItem() and BeginInvoke(), for performing an asynchronous activity with no return types needed(QueueUserWorkItem() 和 BeginInvoke() 之间有什么区别,用于执行不需要返回类型的异步活动)
问题描述
继我的 BeginInvoke()/EndInvoke() 问题之后,Delegate.BeginInvoke() 和使用 QueueUserWorkItem() 异步调用委托之间在性能/其他方面是否存在重大差异?
Following on from my BeginInvoke()/EndInvoke() question, are there major differences in performance/anything else between Delegate.BeginInvoke() and using QueueUserWorkItem() to invoke a delegate asynchronously?
推荐答案
http://blogs.msdn.com/cbrumme/archive/2003/07/14/51495.aspx
说:
一个令人惊讶的事实是,这是还有为什么 Delegate.BeginInvoke/与 EndInvoke 相比,速度太慢了等效技术,例如ThreadPool.QueueUserWorkItem(或UnsafeQueueUserWorkItem 如果你了解安全隐患并且想要真正高效).这BeginInvoke/EndInvoke 的代码路径迅速变成共同的讯息一般处理代码远程路径."
"One surprising fact is that this is also why Delegate.BeginInvoke / EndInvoke are so slow compared to equivalent techniques like ThreadPool.QueueUserWorkItem (or UnsafeQueueUserWorkItem if you understand the security implications and want to be really efficient). The codepath for BeginInvoke / EndInvoke quickly turns into the common Message processing code of the general remoting pathway."
这篇关于QueueUserWorkItem() 和 BeginInvoke() 之间有什么区别,用于执行不需要返回类型的异步活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:QueueUserWorkItem() 和 BeginInvoke() 之间有什么区别,用于执行不需要返回类型的异步活动


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01