在我的应用程序中,我有一组要执行的操作。我想指定特定数量的线程来执行操作。由于某些操作可能比其他操作花费更长的时间并且可能正在等待响应,因此当线程完成时,我希望它返回队列并开始下一个操作。因此,当十个线程之一释放时,它会执行一个新操作,依此类推,直到队列为空,然后继续。在继续之前,我需要等待所有操作完成。
因此,我使用 TPL 进行了一些研究和测试,在记住“哦,废话,我在此应用程序中仅限于 .Net 2.0”之前效果很好。我试图仅使用 .Net 2.0 进行重建,但没有运气。我几乎没有使用线程的经验。
谁能帮我把这个逻辑转换成.Net 2.0?
List<int> results = new List<int>();
var stopwatch = Stopwatch.StartNew();
Random random = new Random();
using (BlockingCollection<Action> queue = new BlockingCollection<Action>())
{
for (int i = 0; i < 20; i++)
{
int index = i;
queue.Add(delegate
{
int foo = random.Next(1, 1500);
Thread.Sleep(foo);
results.Add(foo);
Debug.WriteLine(index + " Working: " + foo + " " + Task.CurrentId);
});
}
queue.CompleteAdding();
const int numWorkers = 10;
Task[] tasks = new Task[numWorkers];
for (int i = 0; i < numWorkers; i++)
{
tasks[i] = Task.Factory.StartNew(() =>
{
foreach (Action action in queue.GetConsumingEnumerable())
{
action();
}
}, CancellationToken.None, TaskCreationOptions.LongRunning, TaskScheduler.Default);
}
Task.WaitAll(tasks);
}
Debug.WriteLine("WaitAll took {0} seconds", stopwatch.Elapsed.TotalSeconds);