Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to wait for a Task<T> to complete with some special rules: If it hasn't completed after X milliseconds, I want to display a message to the user. And if it hasn't completed after Y milliseconds, I want to automatically request cancellation.

I can use Task.ContinueWith to asynchronously wait for the task to complete (i.e. schedule an action to be executed when the task is complete), but that doesn't allow to specify a timeout. I can use Task.Wait to synchronously wait for the task to complete with a timeout, but that blocks my thread. How can I asynchronously wait for the task to complete with a timeout?

share|improve this question
2  
You are right. I am surprised it does not provide for timeout. Maybe in .NET 5.0... Of course we can build the timeout into the task itself but that is no good, such things must come free. – Aliostad Nov 21 '10 at 14:46
While it would still require logic for the two-tier timeout you describe, .NET 4.5 does indeed offer a simple method for creating a timeout-based CancellationTokenSource. Two overloads to the constructor are available, one taking a integer millisecond delay and one taking a TimeSpan delay. – patridge Jul 31 '12 at 18:24
The complete simple lib source here: stackoverflow.com/questions/11831844/… – gg4s5df6s Jan 21 at 15:33

5 Answers

up vote 11 down vote accepted

What about something like this?

    const int x = 3000;
    const int y = 1000;

    static void Main(string[] args)
    {
        // Your scheduler
        TaskScheduler scheduler = TaskScheduler.Default;

        Task nonblockingTask = new Task(() =>
            {
                CancellationTokenSource source = new CancellationTokenSource();

                Task t1 = new Task(() =>
                    {
                        while (true)
                        {
                            // Do something
                            if (source.IsCancellationRequested)
                                break;
                        }
                    }, source.Token);

                t1.Start(scheduler);

                // Wait for task 1
                bool firstTimeout = t1.Wait(x);

                if (!firstTimeout)
                {
                    // If it hasn't finished at first timeout display message
                    Console.WriteLine("Message to user: the operation hasn't completed yet.");

                    bool secondTimeout = t1.Wait(y);

                    if (!secondTimeout)
                    {
                        source.Cancel();
                        Console.WriteLine("Operation stopped!");
                    }
                }
            });

        nonblockingTask.Start();
        Console.WriteLine("Do whatever you want...");
        Console.ReadLine();
    }

You can use the Task.Wait option without blocking main thread using another Task.

share|improve this answer
In fact in this example you are not waiting inside t1 but on an upper task. I'll try to make a more detailed example. – AS-CII Nov 21 '10 at 15:16
I hope this example is more clear to you. – AS-CII Nov 21 '10 at 15:25

How about this:

int timeout = 1000;
var task = SomeOperationAsync();
if (await Task.WhenAny(task, Task.Delay(timeout)) == task) {
    // task completed within timeout
} else { 
    // timeout logic
}

And here's a great blog post with more info on this sort of thing.

share|improve this answer
+1 Beautiful solution – Benjamin Gruenbaum Dec 25 '12 at 13:03
Helped me - thanks +1 :D – Ioana Ionasek Feb 8 at 15:15

You can use Task.WaitAny to wait the first of multiple tasks.

You could create two additional tasks (that complete after the specified timeouts) and then use WaitAny to wait for whichever completes first. If the task that completed first is your "work" task, then you're don. If the task that completed first is a timeout task, then you can react to the timeout (e.g. request cancellation).

share|improve this answer
I've seen this technique used by an MVP I really respect, it seems much cleaner to me than the accepted answer. Perhaps an example would help get more votes! I'd volunteer to do it except I don't have enough Task experience to be confident it would be helpful :) – GrahamMc Feb 7 at 12:59
one thread would be blocked - but if u r ok with that then no problem. The solution I took was the one below, since no threads are blocked. I read the blog post which was really good. – Ioana Ionasek Feb 8 at 15:14

Use a Timer to handle the message and automatic cancellation. When the Task completes, call Dispose on the timers so that they will never fire. Here is an example; change taskDelay to 500, 1500, or 2500 to see the different cases:

using System;
using System.Threading;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        private static Task CreateTaskWithTimeout(
            int xDelay, int yDelay, int taskDelay)
        {
            var cts = new CancellationTokenSource();
            var token = cts.Token;
            var task = Task.Factory.StartNew(() =>
            {
                // Do some work, but fail if cancellation was requested
                token.WaitHandle.WaitOne(taskDelay);
                token.ThrowIfCancellationRequested();
                Console.WriteLine("Task complete");
            });
            var messageTimer = new Timer(state =>
            {
                // Display message at first timeout
                Console.WriteLine("X milliseconds elapsed");
            }, null, xDelay, -1);
            var cancelTimer = new Timer(state =>
            {
                // Display message and cancel task at second timeout
                Console.WriteLine("Y milliseconds elapsed");
                cts.Cancel();
            }
                , null, yDelay, -1);
            task.ContinueWith(t =>
            {
                // Dispose the timers when the task completes
                // This will prevent the message from being displayed
                // if the task completes before the timeout
                messageTimer.Dispose();
                cancelTimer.Dispose();
            });
            return task;
        }

        static void Main(string[] args)
        {
            var task = CreateTaskWithTimeout(1000, 2000, 2500);
            // The task has been started and will display a message after
            // one timeout and then cancel itself after the second
            // You can add continuations to the task
            // or wait for the result as needed
            try
            {
                task.Wait();
                Console.WriteLine("Done waiting for task");
            }
            catch (AggregateException ex)
            {
                Console.WriteLine("Error waiting for task:");
                foreach (var e in ex.InnerExceptions)
                {
                    Console.WriteLine(e);
                }
            }
        }
    }
}

Also, the Async CTP provides a TaskEx.Delay method that will wrap the timers in tasks for you. This can give you more control to do things like set the TaskScheduler for the continuation when the Timer fires.

private static Task CreateTaskWithTimeout(
    int xDelay, int yDelay, int taskDelay)
{
    var cts = new CancellationTokenSource();
    var token = cts.Token;
    var task = Task.Factory.StartNew(() =>
    {
        // Do some work, but fail if cancellation was requested
        token.WaitHandle.WaitOne(taskDelay);
        token.ThrowIfCancellationRequested();
        Console.WriteLine("Task complete");
    });

    var timerCts = new CancellationTokenSource();

    var messageTask = TaskEx.Delay(xDelay, timerCts.Token);
    messageTask.ContinueWith(t =>
    {
        // Display message at first timeout
        Console.WriteLine("X milliseconds elapsed");
    }, TaskContinuationOptions.OnlyOnRanToCompletion);

    var cancelTask = TaskEx.Delay(yDelay, timerCts.Token);
    cancelTask.ContinueWith(t =>
    {
        // Display message and cancel task at second timeout
        Console.WriteLine("Y milliseconds elapsed");
        cts.Cancel();
    }, TaskContinuationOptions.OnlyOnRanToCompletion);

    task.ContinueWith(t =>
    {
        timerCts.Cancel();
    });

    return task;
}
share|improve this answer
He doesn't want the current thread to be blocked, that is, no task.Wait(). – Danny Chen Nov 21 '10 at 15:29
@Danny: That was just to make the example complete. After the ContinueWith you could return and let the task run. I'll update my answer to make that more clear. – Quartermeister Nov 21 '10 at 15:36
I've updated my question. Could you have a look? – dtb Nov 21 '10 at 16:04
1  
@dtb: What if you make t1 a Task<Task<Result>> and then call TaskExtensions.Unwrap? You can return t2 from your inner lambda, and you can add continuations to the unwrapped task afterwards. – Quartermeister Nov 21 '10 at 16:10
Awesome! That perfectly solves my problem. Thanks! I think I will go with the solution proposed by @AS-CII, although I wish I could accept your answer as well for suggesting TaskExtensions.Unwrap Shall I open a new question so you can get the rep you deserve? – dtb Nov 21 '10 at 16:22

It seems that we can't resolve this issue by Task<T> itself only. We must use something else to help, such as a System.Threading.Timer. Use the timer to watch the status of your Task<T> and do corresponding actions. This solution seems to be primitive, but it does help in this issue.

share|improve this answer
@dtb: If you want to get the result as soon as it's finished and can't wait even 0.x seconds, a timer won't help because a timer can only check the task's status every tick. – Danny Chen Nov 21 '10 at 15:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.