我有一些包含Action(System.Action)的ConcurrentQueue。 需要运行此队列中的每个操作(需要使用调用来调用)。
当队列不为空时=>动作需要调用=>但我想对将要运行的并行任务的数量进行一些限制。 除此之外,可以随时向队列添加新动作。
怎么做?
(使用.net 4.0)
我写了一些东西,但我不确定这是最好的方法
SemaphoreSlim maxThread = new SemaphoreSlim(5);
while( !actionQueue.IsEmpty )
{
maxThread.Wait();
Task.Factory.StartNew( () =>
{
Action action;
if( actionExecution.TryDequeue( out action) )
{
action.Invoke();
}
},
TaskCreationOptions.LongRunning ).ContinueWith( ( task ) => maxThread.Release() );
}
}
答案 0 :(得分:14)
查看MSDN文章How to: Create a Task Scheduler That Limits Concurrency。您可以使用LimitedConcurrencyLevelTaskScheduler
实现来生成如下代码:
var scheduler = new LimitedConcurrencyLevelTaskScheduler(5);
TaskFactory factory = new TaskFactory(scheduler);
while( !actionQueue.IsEmpty )
{
factory.StartNew( () =>
{
Action action;
if(actionExecution.TryDequeue(out action))
action.Invoke();
}, TaskCreationOptions.LongRunning);
}
答案 1 :(得分:-1)
您需要指定ParallelOptions
ParallelOptions options = new ParallelOptions();
options.MaxDegreeOfParallelism = 4;//value of your choice
if (Parallel.ForEach(PDFFiles, options, element =>
{
//do work
}