Task.WaitAll Méthode

Définition

Attend que tous les objets Task fournis terminent l’exécution.

Surcharges

WaitAll(Task[], Int32, CancellationToken)

Attend que tous les objets Task fournis terminent l’exécution dans un nombre spécifié de millisecondes ou jusqu’à ce que l’attente soit annulée.

WaitAll(ReadOnlySpan<Task>)

Attend que tous les objets Task fournis terminent l’exécution.

WaitAll(Task[])

Attend que tous les objets Task fournis terminent l’exécution.

WaitAll(IEnumerable<Task>, CancellationToken)

Attend que tous les objets Task fournis terminent l’exécution, sauf si l’attente est annulée.

WaitAll(Task[], Int32)

Attend que tous les objets Task fournis terminent l’exécution dans un nombre spécifié de millisecondes.

WaitAll(Task[], CancellationToken)

Attend que tous les objets Task fournis terminent l’exécution, sauf si l’attente est annulée.

WaitAll(Task[], TimeSpan)

Attend que tous les objets Task annulés fournis terminent l’exécution dans un intervalle de temps spécifié.

WaitAll(Task[], Int32, CancellationToken)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

Attend que tous les objets Task fournis terminent l’exécution dans un nombre spécifié de millisecondes ou jusqu’à ce que l’attente soit annulée.

public static bool WaitAll (System.Threading.Tasks.Task[] tasks, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static bool WaitAll (System.Threading.Tasks.Task[] tasks, int millisecondsTimeout, System.Threading.CancellationToken cancellationToken);

Paramètres

tasks
Task[]

Tableau d’instances de Task sur lesquelles attendre.

millisecondsTimeout
Int32

Nombre de millisecondes à attendre, ou Infinite (-1) à attendre indéfiniment.

cancellationToken
CancellationToken

Un CancellationToken à observer en attendant que les tâches se terminent.

Retours

true si toutes les instances de Task ont terminé l’exécution dans le délai imparti ; sinon, false.

Attributs

Exceptions

Un ou plusieurs objets Task dans tasks ont été supprimés.

L’argument tasks est null.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, le AggregateException contient une OperationCanceledException dans sa collection InnerExceptions.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

millisecondsTimeout est un nombre négatif autre que -1, qui représente un délai d’attente infini.

L’argument tasks contient un élément Null.

Le cancellationToken a été annulé.

Remarques

L’argument cancellationToken est utilisé pour annuler l’opération d’attente. L’annulation des tâches est une opération distincte et est signalée par la AggregateException indiquée ci-dessus.

S’applique à

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

WaitAll(ReadOnlySpan<Task>)

Attend que tous les objets Task fournis terminent l’exécution.

[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static void WaitAll (scoped ReadOnlySpan<System.Threading.Tasks.Task> tasks);

Paramètres

tasks
ReadOnlySpan<Task>

Tableau d’instances de Task sur lesquelles attendre.

Attributs

Exceptions

L’argument tasks contient un élément null.

Au moins l’une des instances Task a été annulée.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

S’applique à

.NET 9
Produit Versions
.NET 9

WaitAll(Task[])

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

Attend que tous les objets Task fournis terminent l’exécution.

public static void WaitAll (params System.Threading.Tasks.Task[] tasks);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static void WaitAll (params System.Threading.Tasks.Task[] tasks);

Paramètres

tasks
Task[]

Tableau d’instances de Task sur lesquelles attendre.

Attributs

Exceptions

Un ou plusieurs objets Task dans tasks ont été supprimés.

L’argument tasks est null.

L’argument tasks contient un élément Null.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, l’exception AggregateException contient une exception OperationCanceledException dans sa collection InnerExceptions.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

Exemples

L’exemple suivant démarre 10 tâches, chacune passant un index en tant qu’objet d’état. Tâches avec un index de deux à cinq exceptions levées. L’appel à la méthode WaitAll encapsule toutes les exceptions dans un objet AggregateException et le propage au thread appelant.

using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

class Example
{
    static void Main()
    {
        var tasks = new List<Task<int>>();
         
        // Define a delegate that prints and returns the system tick count
        Func<object, int> action = (object obj) =>
        {
            int i = (int)obj;

            // Make each thread sleep a different time in order to return a different tick count
            Thread.Sleep(i * 100);

            // The tasks that receive an argument between 2 and 5 throw exceptions
            if (2 <= i && i <= 5)
            {
                throw new InvalidOperationException("SIMULATED EXCEPTION");
            }

            int tickCount = Environment.TickCount;
            Console.WriteLine("Task={0}, i={1}, TickCount={2}, Thread={3}", Task.CurrentId, i, tickCount, Thread.CurrentThread.ManagedThreadId);

            return tickCount;
        };

        // Construct started tasks
        for (int i = 0; i < 10; i++)
        {
            int index = i;
            tasks.Add(Task<int>.Factory.StartNew(action, index));
        }

        try
        {
            // Wait for all the tasks to finish.
            Task.WaitAll(tasks.ToArray());

            // We should never get to this point
            Console.WriteLine("WaitAll() has not thrown exceptions. THIS WAS NOT EXPECTED.");
        }
        catch (AggregateException e)
        {
            Console.WriteLine("\nThe following exceptions have been thrown by WaitAll(): (THIS WAS EXPECTED)");
            for (int j = 0; j < e.InnerExceptions.Count; j++)
            {
                Console.WriteLine("\n-------------------------------------------------\n{0}", e.InnerExceptions[j].ToString());
            }
        }
    }
}
// The example displays output like the following:
//     Task=1, i=0, TickCount=1203822250, Thread=3
//     Task=2, i=1, TickCount=1203822359, Thread=4
//     Task=7, i=6, TickCount=1203823484, Thread=3
//     Task=8, i=7, TickCount=1203823890, Thread=4
//     Task=9, i=8, TickCount=1203824296, Thread=3
//     Task=10, i=9, TickCount=1203824796, Thread=4
//     
//     The following exceptions have been thrown by WaitAll(): (THIS WAS EXPECTED)
//     
//     -------------------------------------------------
//     System.InvalidOperationException: SIMULATED EXCEPTION
//        at Example.<Main>b__0(Object obj)
//        at System.Threading.Tasks.Task`1.InnerInvoke()
//        at System.Threading.Tasks.Task.Execute()
//     
//     -------------------------------------------------
//     System.InvalidOperationException: SIMULATED EXCEPTION
//        at Example.<Main>b__0(Object obj)
//        at System.Threading.Tasks.Task`1.InnerInvoke()
//        at System.Threading.Tasks.Task.Execute()
//     
//     -------------------------------------------------
//     System.InvalidOperationException: SIMULATED EXCEPTION
//        at Example.<Main>b__0(Object obj)
//        at System.Threading.Tasks.Task`1.InnerInvoke()
//        at System.Threading.Tasks.Task.Execute()
//     
//     -------------------------------------------------
//     System.InvalidOperationException: SIMULATED EXCEPTION
//        at Example.<Main>b__0(Object obj)
//        at System.Threading.Tasks.Task`1.InnerInvoke()
//        at System.Threading.Tasks.Task.Execute()

S’applique à

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

WaitAll(IEnumerable<Task>, CancellationToken)

Attend que tous les objets Task fournis terminent l’exécution, sauf si l’attente est annulée.

[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static void WaitAll (System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task> tasks, System.Threading.CancellationToken cancellationToken = default);

Paramètres

tasks
IEnumerable<Task>

Une IEnumerable<T> des instances de tâche sur lesquelles attendre.

cancellationToken
CancellationToken

Un System.Threading.Tasks.Task.CancellationToken à observer en attendant que les tâches se terminent.

Attributs

Exceptions

L’argument tasks est null.

L’argument tasks contient un élément null.

Un ou plusieurs objets Task dans les tâches ont été supprimés.

Le cancellationToken a été annulé.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, le AggregateException contient une OperationCanceledException dans sa collection InnerExceptions.

S’applique à

.NET 9
Produit Versions
.NET 9

WaitAll(Task[], Int32)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

Attend que tous les objets Task fournis terminent l’exécution dans un nombre spécifié de millisecondes.

public static bool WaitAll (System.Threading.Tasks.Task[] tasks, int millisecondsTimeout);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static bool WaitAll (System.Threading.Tasks.Task[] tasks, int millisecondsTimeout);

Paramètres

tasks
Task[]

Tableau d’instances de Task sur lesquelles attendre.

millisecondsTimeout
Int32

Nombre de millisecondes à attendre, ou Infinite (-1) à attendre indéfiniment.

Retours

true si toutes les instances de Task ont terminé l’exécution dans le délai imparti ; sinon, false.

Attributs

Exceptions

Un ou plusieurs objets Task dans tasks ont été supprimés.

L’argument tasks est null.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, le AggregateException contient une OperationCanceledException dans sa collection InnerExceptions.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

millisecondsTimeout est un nombre négatif autre que -1, qui représente un délai d’attente infini.

L’argument tasks contient un élément Null.

S’applique à

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

WaitAll(Task[], CancellationToken)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

Attend que tous les objets Task fournis terminent l’exécution, sauf si l’attente est annulée.

public static void WaitAll (System.Threading.Tasks.Task[] tasks, System.Threading.CancellationToken cancellationToken);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static void WaitAll (System.Threading.Tasks.Task[] tasks, System.Threading.CancellationToken cancellationToken);

Paramètres

tasks
Task[]

Tableau d’instances de Task sur lesquelles attendre.

cancellationToken
CancellationToken

Un CancellationToken à observer en attendant que les tâches se terminent.

Attributs

Exceptions

Le cancellationToken a été annulé.

L’argument tasks est null.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, le AggregateException contient une OperationCanceledException dans sa collection InnerExceptions.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

L’argument tasks contient un élément Null.

Un ou plusieurs objets Task dans tasks ont été supprimés.

Remarques

L’argument cancellationToken est utilisé pour annuler l’opération d’attente. L’annulation des tâches est une opération distincte et est signalée par la AggregateException comme indiqué ci-dessus.

S’applique à

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

WaitAll(Task[], TimeSpan)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

Attend que tous les objets Task annulés fournis terminent l’exécution dans un intervalle de temps spécifié.

public static bool WaitAll (System.Threading.Tasks.Task[] tasks, TimeSpan timeout);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static bool WaitAll (System.Threading.Tasks.Task[] tasks, TimeSpan timeout);

Paramètres

tasks
Task[]

Tableau d’instances de Task sur lesquelles attendre.

timeout
TimeSpan

Un TimeSpan qui représente le nombre de millisecondes à attendre, ou un TimeSpan qui représente -1 millisecondes pour attendre indéfiniment.

Retours

true si toutes les instances de Task ont terminé l’exécution dans le délai imparti ; sinon, false.

Attributs

Exceptions

Un ou plusieurs objets Task dans tasks ont été supprimés.

L’argument tasks est null.

Au moins l’une des instances Task a été annulée. Si une tâche a été annulée, le AggregateException contient une OperationCanceledException dans sa collection InnerExceptions.

-ou-

Une exception a été levée pendant l’exécution d’au moins l’une des instances Task.

timeout est un nombre négatif autre que -1 millisecondes, qui représente un délai d’attente infini.

-ou-

timeout est supérieur à Int32.MaxValue.

L’argument tasks contient un élément Null.

S’applique à

.NET 9 et autres versions
Produit Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0