作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在以下情况下,在 C# 中执行多线程或异步任务的最佳方法是什么?
简化情况:
A http request needs to make 5 or more web service calls. Upon completion each web service call will receive and return a string list as a result. The caller (of 5 web service calls) need to merge the 5 results into a single string list and return it to the http caller.
因为每个线程最后都需要返回一个值所以我想知道是否Asynchronous Delegates是要走的路。因为我在这方面不是很有经验所以我问这个问题和/或建议。
谢谢!
最佳答案
你应该看看QueueUserWorkItem .这将允许您在单独的线程上执行每个调用并根据特定调用获取字符串值,例如
ManualResetEvent[] calls = new ManualResetEvent[5];
string[] results = new string[5];
calls[0] = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem(t =>
{
results[0] = // do webservice call
calls[0].Set();
});
calls[1] = new ManualResetEvent(false);
ThreadPool.QueueUserWorkItem(t =>
{
results[1] = // do webservice call
calls[1].Set();
});
....
// wait for all calls to complete
WaitHandle.WaitAll(calls);
// merge the results into a comma delimited string
string resultStr = String.Join(", ", results);
关于c# - 在 .NET 中使用返回值执行多线程或异步任务的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2317691/
我是一名优秀的程序员,十分优秀!