CountdownEvent的使用 Task 的异步编程

xiaoxiao2021-02-28  43

ConcurrentQueue<int> queue = new ConcurrentQueue<int>(Enumerable.Range(0,10000)); CountdownEvent cde = new CountdownEvent(10000); //This is the logic for all queue consumers Action consumer = () => { int local; while (queue.TryDequeue(out local)) { Console.WriteLine(Task.CurrentId.Value); cde.Signal(); // 1万个Signal; } }; //Now empty the queue with a couple of asynchronous tasks Task t1 = Task.Factory.StartNew(consumer); Task t2 = Task.Factory.StartNew(consumer); //And wait for queue to empty by waiting on cde cde.Wait(); //will return when cde count reaches 0 Console.WriteLine("Done emptying queue. InitialCount={0},CurrentCount={1},IsSet={2}", cde.InitialCount, cde.CurrentCount, cde.IsSet); Task.WaitAll(t1, t2);
转载请注明原文地址: https://www.6miu.com/read-1750134.html

最新回复(0)