本文整理汇总了C#中ConcurrentQueue.Take方法的典型用法代码示例。如果您正苦于以下问题:C# ConcurrentQueue.Take方法的具体用法?C# ConcurrentQueue.Take怎么用?C# ConcurrentQueue.Take使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConcurrentQueue
的用法示例。
在下文中一共展示了ConcurrentQueue.Take方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FixFileLockingIssuesWhenUpdatingLastReadTime
public async Task FixFileLockingIssuesWhenUpdatingLastReadTime()
{
const string knownId = "known-id";
Console.WriteLine("Saving some data");
await _storage.Save(knownId, new MemoryStream(Encoding.UTF8.GetBytes("hej med dig min ven!")));
var caughtExceptions = new ConcurrentQueue<Exception>();
Console.WriteLine("Reading the data many times in parallel");
var threads = Enumerable.Range(0, 10)
.Select(i =>
{
var thread = new Thread(() =>
{
10.Times(() =>
{
try
{
using (var source = _storage.Read(knownId).Result)
using (var destination = new MemoryStream())
{
source.CopyTo(destination);
}
}
catch (Exception exception)
{
caughtExceptions.Enqueue(exception);
}
});
});
return thread;
})
.ToList();
Console.WriteLine("Starting threads");
threads.ForEach(t => t.Start());
Console.WriteLine("Waiting for them to finish");
threads.ForEach(t => t.Join());
Console.WriteLine("Finished :)");
if (caughtExceptions.Count > 0)
{
Assert.Fail([email protected]"Caught {caughtExceptions.Count} exceptions - here's the first 5:
{string.Join(Environment.NewLine + Environment.NewLine, caughtExceptions.Take(5))}");
}
}
示例2: CanReadDataInParallel
public async Task CanReadDataInParallel()
{
var longString = string.Concat(Enumerable.Repeat(@"
Let me explain something to you. Um, I am not ""Mr.Lebowski"".
You're Mr. Lebowski. I'm the Dude.
So that's what you call me.
You know, that or, uh, His Dudeness, or uh, Duder, or El Duderino if you're not into the whole brevity thing.
", 100));
const string dataId = "known-id";
using (var source = new MemoryStream(Encoding.UTF8.GetBytes(longString)))
{
await _storage.Save(dataId, source);
}
var caughtExceptions = new ConcurrentQueue<Exception>();
Console.WriteLine("Reading the data many times in parallel");
var threads = Enumerable.Range(0, 10)
.Select(i =>
{
var thread = new Thread(() =>
{
100.Times(() =>
{
Console.Write(".");
try
{
using (var source = _storage.Read(dataId).Result)
using (var destination = new MemoryStream())
{
source.CopyTo(destination);
}
}
catch (Exception exception)
{
caughtExceptions.Enqueue(exception);
}
});
});
return thread;
})
.ToList();
Console.WriteLine("Starting threads");
threads.ForEach(t => t.Start());
Console.WriteLine("Waiting for them to finish");
threads.ForEach(t => t.Join());
Console.WriteLine("Finished :)");
if (caughtExceptions.Count > 0)
{
Assert.Fail([email protected]"Caught {caughtExceptions.Count} exceptions - here's the first 5:
{string.Join(Environment.NewLine + Environment.NewLine, caughtExceptions.Take(5))}");
}
}