为什么在我的代码通过Wait命令之前,此任务未完成

时间:2016-05-04 14:44:29

标签: c# task-parallel-library task

我有一个任务,它运行循环并延迟每次迭代的间隔。在CancellationTokenSource调用Cancel()之后,我希望我的主代码Wait()Task.Delay(interval)完成,而任务在代码继续之前退出循环。我认为这段代码可行,但它没有。

相反,我的主代码在循环退出之前传递t.Wait()。为什么呢?

主要方法代码:

var cts = new CancellationTokenSource();
CancellationToken ct = cts.Token;

var t = Task.Run(() => { MyLoopTask(200, ct); });

// Prepare information

cts.Cancel();
t.Wait();    

// Send Information

任务代码

private async Task MyLoopTask(int interval, CancellationToken cancelToken)
{
    while (!cancelToken.IsCancellationRequested)
    {
        Debug.Print("   Still In Loop     ");
        // Do something
        await Task.Delay(interval);
    }

    Debug.Print("   cancelled     ");
    //Clean up
}

1 个答案:

答案 0 :(得分:9)

您使用global total total = 0 nums = range(1, 10) def num_increasing(digits, last_digit = 1, length = 0): global total # If the length of the number is equal to the number of digits return if digits == length: total += 1 return possible_digits = nums[last_digit-1::] for i in possible_digits: last_digit = i num_increasing(digits, last_digit, length + 1) return total if __name__ == '__main__': num_increasing(6) print total 创建的任务会触发并忘记从Task.Run返回的实际任务。

MyLoopTask在这里是多余的。您只需致电Task.Run并使用它返回的任务。

MyLoopTask

如果您仍有某些理由使用var t = MyLoopTask(200, ct); // ... t.Wait(); ,您可以通过确保委托等待实际任务来完成此操作:

Task.Run