gpt4 book ai didi

c# - 具有队列和超时问题的 TaskScheduler

转载 作者:行者123 更新时间:2023-11-30 21:51:20 24 4
gpt4 key购买 nike

我要实现的是:

任务调度程序,将任务排入队列并并行运行指定数量,而其他任务则在队列中等待开始。每个任务都有超时,当任务运行时开始计数,如果超过该时间,任务将被取消并抛出 TimeoutException,它在 ContinueWith 中处理(或在其后立即运行的某些任务)。用户应该可以取消任务。

我得到的:

当第一个任务失败时,所有其他任务都会立即失败。

这是我的任务计划程序的完整代码(从 MSDN 中提取并进行了一些修改):

http://pastebin.com/KSMbDTH5 . (有问题的函数在第 161 行)

这是用法示例:

var taskTokens = new List<CancellationToken>();
var factory = new TaskScheduleFactory(new ParallelOptions() { MaxDegreeOfParallelism = 1 }); //for the purpose of testing, supposed to work and with higher values
for (var i = 0; i < 10; i++)
{
//TaskScheduleFactory.cs, line 161
var taskToken = factory.Add(
(token) => //Task
{
Console.WriteLine("Start");
Thread.Sleep(5000);
if (token.IsCancellationRequested) return; //Cancelled by timeout
Console.WriteLine("This should not print");
},
(task) => //ContinueWith
{
if (task.IsFaulted)
{
Console.WriteLine("Fail");
}
else if (!task.IsCompleted)
{
Console.WriteLine("Not completed");
}
else Console.WriteLine("Done");
},
2000 //Timeout
);
taskTokens.Add(taskToken);
}

它应该如何工作:(我们在 2 秒后强制超时事件,因此两个任务都不会完成)

对于 MaxDegreeOfParallelism = 1:

Start;
(Wait 2sec)
Fail;
Start;
(Wait 2sec)
Fail;
....

对于 MaxDegreeOfParallelism = 2:

Start;
Start;
(Wait 2sec)
Fail;
Fail;
Start;
Start;
(Wait 2sec)
Fail;
Fail;
....

工作原理:

Start;
(Wait 2sec)
Fail;
Fail;
Fail;
Fail;
...

(对于 MaxDegreeOfParallelism = 1,其余的也很乱)

注意:这是我使用 TPL 的第一步,请原谅我的愚蠢行为

最佳答案

Add 中调用 .TimeoutAfter(timeoutInMilliseconds, cts)。这意味着超时会在您创建任务后立即开始。我认为您的意图是仅在任务开始执行时才开始超时。

由于第一个任务花费的时间比超时时间长,所有其他任务在轮到它们时都已经超时。

关于c# - 具有队列和超时问题的 TaskScheduler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35741744/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com