gpt4 book ai didi

c# - 在 .NET 中使用返回值执行多线程或异步任务的最佳方法是什么?

转载 作者:太空狗 更新时间:2023-10-30 00:58:42 26 4
gpt4 key购买 nike

在以下情况下,在 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com