取消.Net 4.0中的任务延迟 [英] Canceling Task Delay in .Net 4.0

查看:128
本文介绍了取消.Net 4.0中的任务延迟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在尝试在必须以.Net 4.0为目标的程序中替代.Net 4.5的 Task.Delay()方法。我在此博客中找到了以下代码。

I am currently trying to implement a substitute for .Net 4.5's Task.Delay() method in a program that must target .Net 4.0. I found the following code at this blog.

    /* You can write Task-based asynchronous methods by utilizing a TaskCompletionSource.
A TaskCompletionSource gives you a 'slave' Task that you can manually signal.
Calling SetResult() signals the task as complete, and any continuations kick off. */

void Main()
{    
    for (int i = 0; i < 10000; i++)
    {
        Task task = Delay (2000);
        task.ContinueWith (_ => "Done".Dump());
    }
}

Task Delay (int milliseconds)        // Asynchronous NON-BLOCKING method
{
    var tcs = new TaskCompletionSource<object>();
    new Timer (_ => tcs.SetResult (null)).Change (milliseconds, -1);
    return tcs.Task;
}

任务相当对我来说是新的。 System.Threading.Timer TaskCompletionSource 对我来说是全新的(到目前为止),我正在努力咬他们。除此之外,我想知道如何在此代码中添加 CancellationToken 功能。我假设我可以像这样向 Delay()方法添加参数:

Tasks are fairly new to me. System.Threading.Timer and TaskCompletionSource are brand new to me (as of today), and I'm struggling a bit with them. All that aside, I'm wondering how I might add CancellationToken functionality to this code. I'm assuming I could add a parameter to the Delay() method like this:

Task Delay (int milliseconds, CancellationToken token)        // Asynchronous NON-BLOCKING method
{
    var tcs = new TaskCompletionSource<object>();
    new Timer (_ => tcs.SetResult (null)).Change (milliseconds, -1);
    return tcs.Task;
}

...但是,在哪里放置检查令牌的逻辑并摆脱方法?回调中的某处?这有可能吗?

... but then, where do I put the logic for checking the token and getting out of the method? Somewhere in the callback? Is this even possible?

推荐答案

我试图尽可能少地更改您的代码,但这是一个工作示例,其行为与Task.Delay。

I've tried to change your code as little as possible but here is a working example that behaves in the same way as Task.Delay.

请务必注意,我使用了 TrySetCanceled TrySetResult 因为计时器可以在取消任务后完成。理想情况下,您想停止计时器。

It's important to note that I use TrySetCanceled and TrySetResult because the Timer could finish after the task is canceled. Ideally you want to stop the timer.

还请注意,已取消的任务将引发 TaskCanceledException

Also note a canceled task will throw a TaskCanceledException

static void Main(string[] args)
{
    // A cancellation source that will cancel itself after 1 second
    var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(1));

    try
    {
        // This will only wait 1 second because as it will be cancelled.
        Task t = Delay(5000, cancellationTokenSource.Token);                
        t.Wait();
        Console.WriteLine("The task completed");
    }
    catch (AggregateException exception)
    {
        // Expecting a TaskCanceledException
        foreach (Exception ex in exception.InnerExceptions)
            Console.WriteLine("Exception: {0}", ex.Message);
    }
    Console.WriteLine("Done");
    Console.ReadLine();
}

private static Task Delay(int milliseconds, CancellationToken token)
{
    var tcs = new TaskCompletionSource<object>();
    token.Register(() => tcs.TrySetCanceled());
    Timer timer = new Timer(_ => tcs.TrySetResult(null));
    timer.Change(milliseconds, -1);            
    return tcs.Task;
}

多读一些问题。如果您需要Task.Delay并且以.NET 4.0为目标,则应使用 http://www.nuget.org/packages/Microsoft.Bcl.Async/ 包含方法 TaskEx.Delay

Reading a bit more into your question. If you need Task.Delay and you're targeting .NET 4.0 then you should use the Microsoft Async nuget package from http://www.nuget.org/packages/Microsoft.Bcl.Async/ it contains the method TaskEx.Delay

这篇关于取消.Net 4.0中的任务延迟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆