本文整理汇总了C#中ConcurrentQueue.GetNextOrThrow方法的典型用法代码示例。如果您正苦于以下问题:C# ConcurrentQueue.GetNextOrThrow方法的具体用法?C# ConcurrentQueue.GetNextOrThrow怎么用?C# ConcurrentQueue.GetNextOrThrow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConcurrentQueue
的用法示例。
在下文中一共展示了ConcurrentQueue.GetNextOrThrow方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandlersWithAwaitAreExecutedInParallel
public void HandlersWithAwaitAreExecutedInParallel()
{
var resetEvents = new List<ManualResetEvent>
{
new ManualResetEvent(false),
new ManualResetEvent(false),
new ManualResetEvent(false),
new ManualResetEvent(false),
new ManualResetEvent(false),
};
var resetEventsQueue = new ConcurrentQueue<ManualResetEvent>(resetEvents);
var idCounter = 0;
_activator.Handle<string>(async message =>
{
var id = Interlocked.Increment(ref idCounter);
var stopwatch = Stopwatch.StartNew();
Console.WriteLine($"operation {id} (msg: {message}) sleeping 1s...");
await Task.Delay(1000);
Console.WriteLine($"operation {id} done sleeping (sleeping 1s actually took {stopwatch.Elapsed.TotalSeconds:0.##}) s) - setting reset event");
var resetEvent = resetEventsQueue.GetNextOrThrow();
Console.WriteLine($"operation {id} set the reset event");
resetEvent.Set();
});
Task.WaitAll(
_activator.Bus.SendLocal("1"),
_activator.Bus.SendLocal("2"),
_activator.Bus.SendLocal("3"),
_activator.Bus.SendLocal("4"),
_activator.Bus.SendLocal("5"));
var doneThing = "";
var allDone = new ManualResetEvent(false);
Task.WhenAll(resetEvents.Select(r => r.WaitAsync()))
.ContinueWith(t =>
{
Console.WriteLine("HANDLE TASKS DONE!");
doneThing = "HandleTasks";
allDone.Set();
});
Task.Delay(4000)
.ContinueWith(t =>
{
Console.WriteLine("TIME IS OUT!");
doneThing = "TIMEOUT!";
allDone.Set();
});
allDone.WaitOrDie(TimeSpan.FromSeconds(3));
Assert.That(doneThing, Is.EqualTo("HandleTasks"));
}