Async Task.WhenAll with timeout

后端 未结 11 1950
梦谈多话
梦谈多话 2020-11-29 04:33

Is there a way in the new async dotnet 4.5 library to set a timeout on the Task.WhenAll method. I want to fetch several sources and stop after say 5 seconds and

相关标签:
11条回答
  • 2020-11-29 04:45

    In addition to svick's answer, the following works for me when I have to wait for a couple of tasks to complete but have to process something else while I'm waiting:

    Task[] TasksToWaitFor = //Your tasks
    TimeSpan Timeout = TimeSpan.FromSeconds( 30 );
    
    while( true )
    {
        await Task.WhenAny( Task.WhenAll( TasksToWaitFor ), Task.Delay( Timeout ) );
        if( TasksToWaitFor.All( a => a.IsCompleted ) )
            break;
    
        //Do something else here
    }
    
    0 讨论(0)
  • 2020-11-29 04:46

    Check out a custom task combinator proposed in http://tutorials.csharp-online.net/Task_Combinators

    async static Task<TResult> WithTimeout<TResult> 
       (this Task<TResult> task, TimeSpan timeout)
     {
       Task winner = await (Task.WhenAny 
          (task, Task.Delay (timeout)));
       if (winner != task) throw new TimeoutException();
       return await task; // Unwrap result/re-throw
    }
    

    I have not tried it yet.

    0 讨论(0)
  • 2020-11-29 04:46

    Seems like the Task.WaitAll overload with the timeout parameter is all you need - if it returns true, then you know they all completed - otherwise, you can filter on IsCompleted.

    if (Task.WaitAll(tasks, myTimeout) == false)
    {
        tasks = tasks.Where(t => t.IsCompleted);
    }
    ...
    
    0 讨论(0)
  • 2020-11-29 04:50

    void result version of @i3arnon 's answer, along with comments and changing first argument to use extension this.

    I've also got a forwarding method specifying timeout as an int using TimeSpan.FromMilliseconds(millisecondsTimeout) to match other Task methods.

    public static async Task WhenAll(this IEnumerable<Task> tasks, TimeSpan timeout)
    {
      // Create a timeout task.
      var timeoutTask = Task.Delay(timeout);
    
      // Get the completed tasks made up of...
      var completedTasks =
      (
        // ...all tasks specified
        await Task.WhenAll(tasks
    
        // Now finish when its task has finished or the timeout task finishes
        .Select(task => Task.WhenAny(task, timeoutTask)))
      )
      // ...but not the timeout task
      .Where(task => task != timeoutTask);
    
      // And wait for the internal WhenAll to complete.
      await Task.WhenAll(completedTasks);
    }
    
    0 讨论(0)
  • 2020-11-29 04:53

    You can use the following code:

            var timeoutTime = 10;
    
            var tasksResult = await Task.WhenAll(
                                    listOfTasks.Select(x => Task.WhenAny(
                                        x, Task.Delay(TimeSpan.FromMinutes(timeoutTime)))
                                    )
                                );
    
    
            var succeededtasksResponses = tasksResult
                                                   .OfType<Task<MyResult>>()
                                                   .Select(task => task.Result);
    
            if (succeededtasksResponses.Count() != listOfTasks.Count())
            {
                // Not all tasks were completed
                // Throw error or do whatever you want
            }
    
            //You can use the succeededtasksResponses that contains the list of successful responses
    

    How it works:

    You need to put in the timeoutTime variable the limit of time for all tasks to be completed. So basically all tasks will wait in maximum the time that you set in timeoutTime. When all the tasks return the result, the timeout will not occur and the tasksResult will be set.

    After that we are only getting the completed tasks. The tasks that were not completed will have no results.

    0 讨论(0)
  • 2020-11-29 04:55

    Check out the "Early Bailout" and "Task.Delay" sections from Microsoft's Consuming the Task-based Asynchronous Pattern.

    Early bailout. An operation represented by t1 can be grouped in a WhenAny with another task t2, and we can wait on the WhenAny task. t2 could represent a timeout, or cancellation, or some other signal that will cause the WhenAny task to complete prior to t1 completing.

    0 讨论(0)
提交回复
热议问题