Creates a continuation Task that will be started upon the completion of a set of provided Tasks.
Public Function ContinueWhenAll ( _ tasks As Task(), _ continuationAction As Action(Of Task()) _ ) As Task
public Task ContinueWhenAll( Task[] tasks, Action<Task[]> continuationAction )
public: Task^ ContinueWhenAll( array<Task^>^ tasks, Action<array<Task^>^>^ continuationAction )
member ContinueWhenAll : tasks:Task[] * continuationAction:Action<Task[]> -> Task
The exception that is thrown when one of the elements in the tasks array has been disposed.
The exception that is thrown when the tasks array is null.
-or-
The exception that is thrown when the continuationAction argument is null.
The exception that is thrown when the tasks array contains a null value.
The exception that is thrown when the tasks array is empty.
This example demonstrates using ContinueWhenAll() to perform some continuation a set of previously started Tasks has completed.
// C#
// Create and start some tasks
var taskQueue = new Queue<Task>();
for (int i = 0; i < 10; i++)
{
taskQueue.Enqueue(Task.Factory.StartNew(() =>
// Do work.
}));
}
// Perform some work with the tasks when they complete.
Task.Factory.ContinueWhenAll(taskQueue.ToArray(), completedTasks =>
// Do continuation work.
});
' Visual Basic
' Create and start some tasks
Dim taskQueue As New Queue(Of Task)()
For i As Integer = 0 To 9
taskQueue.Add(Task.Factory.StartNew(Sub()
' Do work.
End Sub))
Next
' Perform some work with the tasks when they complete.
Task.Factory.ContinueWhenAll(taskQueue.ToArray(), Sub(completedTasks)
' Do continuation work.
End Sub)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2