Task.WhenAll Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un'attività che verrà completata al termine di tutte le attività fornite.
Overload
WhenAll(IEnumerable<Task>) |
Crea un'attività che verrà completata al termine di tutti gli oggetti Task in un insieme enumerabile. |
WhenAll(ReadOnlySpan<Task>) |
Crea un'attività che verrà completata al termine di tutte le attività fornite. |
WhenAll(Task[]) |
Crea un'attività che verrà completata al termine di tutti gli oggetti Task in una matrice. |
WhenAll<TResult>(ReadOnlySpan<Task<TResult>>) |
Crea un'attività che verrà completata al termine di tutte le attività fornite. |
WhenAll<TResult>(IEnumerable<Task<TResult>>) |
Crea un'attività che verrà completata al termine di tutti gli oggetti Task<TResult> in un insieme enumerabile. |
WhenAll<TResult>(Task<TResult>[]) |
Crea un'attività che verrà completata al termine di tutti gli oggetti Task<TResult> in una matrice. |
WhenAll(IEnumerable<Task>)
- Origine:
- Task.cs
- Origine:
- Task.cs
- Origine:
- Task.cs
Crea un'attività che verrà completata al termine di tutti gli oggetti Task in un insieme enumerabile.
public:
static System::Threading::Tasks::Task ^ WhenAll(System::Collections::Generic::IEnumerable<System::Threading::Tasks::Task ^> ^ tasks);
public static System.Threading.Tasks.Task WhenAll (System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task> tasks);
static member WhenAll : seq<System.Threading.Tasks.Task> -> System.Threading.Tasks.Task
Public Shared Function WhenAll (tasks As IEnumerable(Of Task)) As Task
Parametri
- tasks
- IEnumerable<Task>
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
L'argomento tasks
è stato null
.
L'insieme tasks
contiene un'attività di null
.
Esempio
Nell'esempio seguente viene creato un set di attività che eseguono il ping degli URL in una matrice. Le attività vengono archiviate in una raccolta List<Task>
passata al metodo WhenAll(IEnumerable<Task>). Dopo che la chiamata al metodo Wait garantisce che tutti i thread siano stati completati, nell'esempio viene esaminata la proprietà Task.Status per determinare se sono state eseguite attività con errori.
using System;
using System.Collections.Generic;
using System.Net.NetworkInformation;
using System.Threading;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
int failed = 0;
var tasks = new List<Task>();
String[] urls = { "www.adatum.com", "www.cohovineyard.com",
"www.cohowinery.com", "www.northwindtraders.com",
"www.contoso.com" };
foreach (var value in urls) {
var url = value;
tasks.Add(Task.Run( () => { var png = new Ping();
try {
var reply = png.Send(url);
if (! (reply.Status == IPStatus.Success)) {
Interlocked.Increment(ref failed);
throw new TimeoutException("Unable to reach " + url + ".");
}
}
catch (PingException) {
Interlocked.Increment(ref failed);
throw;
}
}));
}
Task t = Task.WhenAll(tasks);
try {
t.Wait();
}
catch {}
if (t.Status == TaskStatus.RanToCompletion)
Console.WriteLine("All ping attempts succeeded.");
else if (t.Status == TaskStatus.Faulted)
Console.WriteLine("{0} ping attempts failed", failed);
}
}
// The example displays output like the following:
// 5 ping attempts failed
open System
open System.Net.NetworkInformation
open System.Threading
open System.Threading.Tasks
let mutable failed = 0
let urls =
[ "www.adatum.com"
"www.cohovineyard.com"
"www.cohowinery.com"
"www.northwindtraders.com"
"www.contoso.com" ]
let tasks =
urls
|> List.map (fun url ->
Task.Run(fun () ->
let png = new Ping()
try
let reply = png.Send url
if reply.Status <> IPStatus.Success then
Interlocked.Increment &failed |> ignore
raise (TimeoutException $"Unable to reach {url}.")
with :? PingException ->
Interlocked.Increment &failed |> ignore
reraise ()))
let t = Task.WhenAll tasks
try
t.Wait()
with _ ->
()
if t.Status = TaskStatus.RanToCompletion then
printfn "All ping attempts succeeded."
elif t.Status = TaskStatus.Faulted then
printfn $"{failed} ping attempts failed"
// The example displays output like the following:
// 5 ping attempts failed
Imports System.Collections.Generic
Imports System.Net.NetworkInformation
Imports System.Threading
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim failed As Integer = 0
Dim tasks As New List(Of Task)()
Dim urls() As String = { "www.adatum.com", "www.cohovineyard.com",
"www.cohowinery.com", "www.northwindtraders.com",
"www.contoso.com" }
For Each value In urls
Dim url As String = value
tasks.Add(Task.Run( Sub()
Dim png As New Ping()
Try
Dim reply = png.Send(url)
If Not reply.Status = IPStatus.Success Then
Interlocked.Increment(failed)
Throw New TimeoutException("Unable to reach " + url + ".")
End If
Catch e As PingException
Interlocked.Increment(failed)
Throw
End Try
End Sub))
Next
Dim t As Task = Task.WhenAll(tasks)
Try
t.Wait()
Catch
End Try
If t.Status = TaskStatus.RanToCompletion
Console.WriteLine("All ping attempts succeeded.")
ElseIf t.Status = TaskStatus.Faulted
Console.WriteLine("{0} ping attempts failed", failed)
End If
End Sub
End Module
' The example displays output like the following:
' 5 ping attempts failed
Commenti
Gli overload del metodo WhenAll che restituiscono un oggetto Task vengono in genere chiamati quando si è interessati allo stato di un set di attività o alle eccezioni generate da un set di attività.
Nota
La chiamata al metodo WhenAll(IEnumerable<Task>) non blocca il thread chiamante.
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Faulted, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non di cui è stato eseguito il wrapping da ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Canceled.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante terminerà nello stato RanToCompletion.
Se la matrice/enumerabile fornita non contiene attività, l'attività restituita passerà immediatamente a uno stato RanToCompletion prima che venga restituito al chiamante.
Si applica a
WhenAll(ReadOnlySpan<Task>)
Crea un'attività che verrà completata al termine di tutte le attività fornite.
public:
static System::Threading::Tasks::Task ^ WhenAll(ReadOnlySpan<System::Threading::Tasks::Task ^> tasks);
public static System.Threading.Tasks.Task WhenAll (scoped ReadOnlySpan<System.Threading.Tasks.Task> tasks);
static member WhenAll : ReadOnlySpan<System.Threading.Tasks.Task> -> System.Threading.Tasks.Task
Public Shared Function WhenAll (tasks As ReadOnlySpan(Of Task)) As Task
Parametri
- tasks
- ReadOnlySpan<Task>
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
La matrice di tasks
contiene un'attività null
.
Commenti
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Di errore, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non incluse in ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore, ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Annullato.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante termina nello stato RanToCompletion.
Se l'intervallo fornito non contiene attività, l'attività restituita passerà immediatamente a uno stato RanToCompletion prima che venga restituito al chiamante.
Si applica a
WhenAll(Task[])
- Origine:
- Task.cs
- Origine:
- Task.cs
- Origine:
- Task.cs
Crea un'attività che verrà completata al termine di tutti gli oggetti Task in una matrice.
public:
static System::Threading::Tasks::Task ^ WhenAll(... cli::array <System::Threading::Tasks::Task ^> ^ tasks);
public static System.Threading.Tasks.Task WhenAll (params System.Threading.Tasks.Task[] tasks);
static member WhenAll : System.Threading.Tasks.Task[] -> System.Threading.Tasks.Task
Public Shared Function WhenAll (ParamArray tasks As Task()) As Task
Parametri
- tasks
- Task[]
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
L'argomento tasks
è stato null
.
La matrice tasks
contiene un'attività di null
.
Esempio
Nell'esempio seguente viene creato un set di attività che eseguono il ping degli URL in una matrice. Le attività vengono archiviate in una raccolta List<Task>
che viene convertita in una matrice e passata al metodo WhenAll(IEnumerable<Task>). Dopo che la chiamata al metodo Wait garantisce che tutti i thread siano stati completati, nell'esempio viene esaminata la proprietà Task.Status per determinare se sono state eseguite attività con errori.
using System;
using System.Collections.Generic;
using System.Net.NetworkInformation;
using System.Threading;
using System.Threading.Tasks;
public class Example
{
public static async Task Main()
{
int failed = 0;
var tasks = new List<Task>();
String[] urls = { "www.adatum.com", "www.cohovineyard.com",
"www.cohowinery.com", "www.northwindtraders.com",
"www.contoso.com" };
foreach (var value in urls) {
var url = value;
tasks.Add(Task.Run( () => { var png = new Ping();
try {
var reply = png.Send(url);
if (! (reply.Status == IPStatus.Success)) {
Interlocked.Increment(ref failed);
throw new TimeoutException("Unable to reach " + url + ".");
}
}
catch (PingException) {
Interlocked.Increment(ref failed);
throw;
}
}));
}
Task t = Task.WhenAll(tasks.ToArray());
try {
await t;
}
catch {}
if (t.Status == TaskStatus.RanToCompletion)
Console.WriteLine("All ping attempts succeeded.");
else if (t.Status == TaskStatus.Faulted)
Console.WriteLine("{0} ping attempts failed", failed);
}
}
// The example displays output like the following:
// 5 ping attempts failed
open System
open System.Net.NetworkInformation
open System.Threading
open System.Threading.Tasks
let mutable failed = 0
let urls =
[| "www.adatum.com"
"www.cohovineyard.com"
"www.cohowinery.com"
"www.northwindtraders.com"
"www.contoso.com" |]
let tasks =
urls
|> Array.map (fun url ->
Task.Run(fun () ->
let png = new Ping()
try
let reply = png.Send url
if reply.Status <> IPStatus.Success then
Interlocked.Increment &failed |> ignore
raise (TimeoutException $"Unable to reach {url}.")
with :? PingException ->
Interlocked.Increment &failed |> ignore
reraise ()))
let main =
task {
let t = Task.WhenAll tasks
try
do! t
with _ ->
()
if t.Status = TaskStatus.RanToCompletion then
printfn "All ping attempts succeeded."
elif t.Status = TaskStatus.Faulted then
printfn $"{failed} ping attempts failed"
}
main.Wait()
// The example displays output like the following:
// 5 ping attempts failed
Imports System.Collections.Generic
Imports System.Net.NetworkInformation
Imports System.Threading
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim failed As Integer = 0
Dim tasks As New List(Of Task)()
Dim urls() As String = { "www.adatum.com", "www.cohovineyard.com",
"www.cohowinery.com", "www.northwindtraders.com",
"www.contoso.com" }
For Each value In urls
Dim url As String = value
tasks.Add(Task.Run( Sub()
Dim png As New Ping()
Try
Dim reply = png.Send(url)
If Not reply.Status = IPStatus.Success Then
Interlocked.Increment(failed)
Throw New TimeoutException("Unable to reach " + url + ".")
End If
Catch e As PingException
Interlocked.Increment(failed)
Throw
End Try
End Sub))
Next
Dim t As Task = Task.WhenAll(tasks.ToArray())
Try
t.Wait()
Catch
End Try
If t.Status = TaskStatus.RanToCompletion
Console.WriteLine("All ping attempts succeeded.")
ElseIf t.Status = TaskStatus.Faulted
Console.WriteLine("{0} ping attempts failed", failed)
End If
End Sub
End Module
' The example displays output like the following:
' 5 ping attempts failed
Commenti
Gli overload del metodo WhenAll che restituiscono un oggetto Task vengono in genere chiamati quando si è interessati allo stato di un set di attività o alle eccezioni generate da un set di attività.
Nota
La chiamata al metodo WhenAll(Task[]) non blocca il thread chiamante.
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Faulted, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non di cui è stato eseguito il wrapping da ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Canceled.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante terminerà nello stato RanToCompletion.
Se la matrice/enumerabile fornita non contiene attività, l'attività restituita passerà immediatamente a uno stato RanToCompletion prima che venga restituito al chiamante.
Si applica a
WhenAll<TResult>(ReadOnlySpan<Task<TResult>>)
Crea un'attività che verrà completata al termine di tutte le attività fornite.
public:
generic <typename TResult>
static System::Threading::Tasks::Task<cli::array <TResult> ^> ^ WhenAll(ReadOnlySpan<System::Threading::Tasks::Task<TResult> ^> tasks);
public static System.Threading.Tasks.Task<TResult[]> WhenAll<TResult> (scoped ReadOnlySpan<System.Threading.Tasks.Task<TResult>> tasks);
static member WhenAll : ReadOnlySpan<System.Threading.Tasks.Task<'Result>> -> System.Threading.Tasks.Task<'Result[]>
Public Shared Function WhenAll(Of TResult) (tasks As ReadOnlySpan(Of Task(Of TResult))) As Task(Of TResult())
Parametri di tipo
- TResult
Parametri
- tasks
- ReadOnlySpan<Task<TResult>>
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
La matrice di tasks
contiene un'attività null
.
Commenti
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Di errore, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non incluse in ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore, ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Annullato.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante termina nello stato RanToCompletion. Il risultato dell'attività restituita verrà impostato su una matrice contenente tutti i risultati delle attività fornite nello stesso ordine specificato, ad esempio se la matrice di attività di input contiene t1, t2, t3, il risultato dell'attività di output restituirà un valore TResult[] dove arr[0] == t1. Risultato, arr[1] == t2. Risultato e arr[2] == t3. Risultato).
Se la matrice/enumerabile fornita non contiene attività, l'attività restituita passerà immediatamente a uno stato RanToCompletion prima che venga restituita al chiamante. Il valore restituito TResult[] sarà una matrice di 0 elementi.
Si applica a
WhenAll<TResult>(IEnumerable<Task<TResult>>)
- Origine:
- Task.cs
- Origine:
- Task.cs
- Origine:
- Task.cs
Crea un'attività che verrà completata al termine di tutti gli oggetti Task<TResult> in un insieme enumerabile.
public:
generic <typename TResult>
static System::Threading::Tasks::Task<cli::array <TResult> ^> ^ WhenAll(System::Collections::Generic::IEnumerable<System::Threading::Tasks::Task<TResult> ^> ^ tasks);
public static System.Threading.Tasks.Task<TResult[]> WhenAll<TResult> (System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>> tasks);
static member WhenAll : seq<System.Threading.Tasks.Task<'Result>> -> System.Threading.Tasks.Task<'Result[]>
Public Shared Function WhenAll(Of TResult) (tasks As IEnumerable(Of Task(Of TResult))) As Task(Of TResult())
Parametri di tipo
- TResult
Tipo dell'attività completata.
Parametri
- tasks
- IEnumerable<Task<TResult>>
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
L'argomento tasks
è stato null
.
L'insieme tasks
contiene un'attività di null
.
Esempio
Nell'esempio seguente vengono create dieci attività, ognuna delle quali crea un'istanza di un generatore di numeri casuali che crea 1.000 numeri casuali tra 1 e 1.000 e ne calcola la media. Il metodo Delay(Int32) viene usato per ritardare la creazione di istanze dei generatori di numeri casuali in modo che non vengano creati con valori di inizializzazione identici. La chiamata al metodo WhenAll restituisce quindi una matrice di Int64 contenente la media calcolata da ogni attività. Questi vengono quindi usati per calcolare la media complessiva.
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
var tasks = new List<Task<long>>();
for (int ctr = 1; ctr <= 10; ctr++) {
int delayInterval = 18 * ctr;
tasks.Add(Task.Run(async () => { long total = 0;
await Task.Delay(delayInterval);
var rnd = new Random();
// Generate 1,000 random numbers.
for (int n = 1; n <= 1000; n++)
total += rnd.Next(0, 1000);
return total; } ));
}
var continuation = Task.WhenAll(tasks);
try {
continuation.Wait();
}
catch (AggregateException)
{ }
if (continuation.Status == TaskStatus.RanToCompletion) {
long grandTotal = 0;
foreach (var result in continuation.Result) {
grandTotal += result;
Console.WriteLine("Mean: {0:N2}, n = 1,000", result/1000.0);
}
Console.WriteLine("\nMean of Means: {0:N2}, n = 10,000",
grandTotal/10000);
}
// Display information on faulted tasks.
else {
foreach (var t in tasks) {
Console.WriteLine("Task {0}: {1}", t.Id, t.Status);
}
}
}
}
// The example displays output like the following:
// Mean: 506.34, n = 1,000
// Mean: 504.69, n = 1,000
// Mean: 489.32, n = 1,000
// Mean: 505.96, n = 1,000
// Mean: 515.31, n = 1,000
// Mean: 499.94, n = 1,000
// Mean: 496.92, n = 1,000
// Mean: 508.58, n = 1,000
// Mean: 494.88, n = 1,000
// Mean: 493.53, n = 1,000
//
// Mean of Means: 501.55, n = 10,000
open System
open System.Threading.Tasks
let tasks =
[| for i = 1 to 10 do
let delayInterval = 18 * i
task {
let mutable total = 0L
do! Task.Delay delayInterval
let rnd = Random()
for _ = 1 to 1000 do
total <- total + (rnd.Next(0, 1000) |> int64)
return total
} |]
let continuation = Task.WhenAll tasks
try
continuation.Wait()
with :? AggregateException ->
()
if continuation.Status = TaskStatus.RanToCompletion then
for result in continuation.Result do
printfn $"Mean: {float result / 1000.:N2}, n = 1,000"
let grandTotal = continuation.Result |> Array.sum
printfn $"\nMean of Means: {float grandTotal / 10000.:N2}, n = 10,000"
// Display information on faulted tasks.
else
for t in tasks do
printfn $"Task {t.Id}: {t.Status}"
// The example displays output like the following:
// Mean: 506.34, n = 1,000
// Mean: 504.69, n = 1,000
// Mean: 489.32, n = 1,000
// Mean: 505.96, n = 1,000
// Mean: 515.31, n = 1,000
// Mean: 499.94, n = 1,000
// Mean: 496.92, n = 1,000
// Mean: 508.58, n = 1,000
// Mean: 494.88, n = 1,000
// Mean: 493.53, n = 1,000
//
// Mean of Means: 501.55, n = 10,000
Imports System.Collections.Generic
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim tasks As New List(Of Task(Of Long))()
For ctr As Integer = 1 To 10
Dim delayInterval As Integer = 18 * ctr
tasks.Add(Task.Run(Async Function()
Dim total As Long = 0
Await Task.Delay(delayInterval)
Dim rnd As New Random()
' Generate 1,000 random numbers.
For n As Integer = 1 To 1000
total += rnd.Next(0, 1000)
Next
Return total
End Function))
Next
Dim continuation = Task.WhenAll(tasks)
Try
continuation.Wait()
Catch ae As AggregateException
End Try
If continuation.Status = TaskStatus.RanToCompletion Then
Dim grandTotal As Long = 0
For Each result in continuation.Result
grandTotal += result
Console.WriteLine("Mean: {0:N2}, n = 1,000", result/1000)
Next
Console.WriteLine()
Console.WriteLine("Mean of Means: {0:N2}, n = 10,000",
grandTotal/10000)
' Display information on faulted tasks.
Else
For Each t In tasks
Console.WriteLine("Task {0}: {1}", t.Id, t.Status)
Next
End If
End Sub
End Module
' The example displays output like the following:
' Mean: 506.34, n = 1,000
' Mean: 504.69, n = 1,000
' Mean: 489.32, n = 1,000
' Mean: 505.96, n = 1,000
' Mean: 515.31, n = 1,000
' Mean: 499.94, n = 1,000
' Mean: 496.92, n = 1,000
' Mean: 508.58, n = 1,000
' Mean: 494.88, n = 1,000
' Mean: 493.53, n = 1,000
'
' Mean of Means: 501.55, n = 10,000
In questo caso, le dieci singole attività vengono archiviate in un oggetto List<T>. List<T> implementa l'interfaccia IEnumerable<T>.
Commenti
La chiamata al metodo WhenAll<TResult>(IEnumerable<Task<TResult>>) non blocca il thread chiamante. Tuttavia, una chiamata alla proprietà Result restituita blocca il thread chiamante.
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Faulted, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non di cui è stato eseguito il wrapping da ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Canceled.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante terminerà nello stato RanToCompletion. La proprietà Task<TResult>.Result dell'attività restituita verrà impostata su una matrice contenente tutti i risultati delle attività fornite nello stesso ordine specificato, ad esempio se la matrice di attività di input contiene t1, t2, t3, la proprietà Task<TResult>.Result dell'attività di output restituirà un TResult[]
in cui arr[0] == t1.Result, arr[1] == t2.Result, and arr[2] == t3.Result)
.
Se l'argomento tasks
non contiene attività, l'attività restituita passerà immediatamente a uno stato di RanToCompletion prima che venga restituito al chiamante. Il TResult[]
restituito sarà una matrice di 0 elementi.
Si applica a
WhenAll<TResult>(Task<TResult>[])
- Origine:
- Task.cs
- Origine:
- Task.cs
- Origine:
- Task.cs
Crea un'attività che verrà completata al termine di tutti gli oggetti Task<TResult> in una matrice.
public:
generic <typename TResult>
static System::Threading::Tasks::Task<cli::array <TResult> ^> ^ WhenAll(... cli::array <System::Threading::Tasks::Task<TResult> ^> ^ tasks);
public static System.Threading.Tasks.Task<TResult[]> WhenAll<TResult> (params System.Threading.Tasks.Task<TResult>[] tasks);
static member WhenAll : System.Threading.Tasks.Task<'Result>[] -> System.Threading.Tasks.Task<'Result[]>
Public Shared Function WhenAll(Of TResult) (ParamArray tasks As Task(Of TResult)()) As Task(Of TResult())
Parametri di tipo
- TResult
Tipo dell'attività completata.
Parametri
- tasks
- Task<TResult>[]
Attività da attendere il completamento.
Restituisce
Attività che rappresenta il completamento di tutte le attività fornite.
Eccezioni
L'argomento tasks
è stato null
.
La matrice tasks
contiene un'attività di null
.
Esempio
Nell'esempio seguente vengono create dieci attività, ognuna delle quali crea un'istanza di un generatore di numeri casuali che crea 1.000 numeri casuali tra 1 e 1.000 e ne calcola la media. In questo caso, le dieci singole attività vengono archiviate in una matrice di Task<Int64>
. Il metodo Delay(Int32) viene usato per ritardare la creazione di istanze dei generatori di numeri casuali in modo che non vengano creati con valori di inizializzazione identici. La chiamata al metodo WhenAll restituisce quindi una matrice di Int64 contenente la media calcolata da ogni attività. Questi vengono quindi usati per calcolare la media complessiva.
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
var tasks = new Task<long>[10];
for (int ctr = 1; ctr <= 10; ctr++) {
int delayInterval = 18 * ctr;
tasks[ctr - 1] = Task.Run(async () => { long total = 0;
await Task.Delay(delayInterval);
var rnd = new Random();
// Generate 1,000 random numbers.
for (int n = 1; n <= 1000; n++)
total += rnd.Next(0, 1000);
return total; } );
}
var continuation = Task.WhenAll(tasks);
try {
continuation.Wait();
}
catch (AggregateException)
{}
if (continuation.Status == TaskStatus.RanToCompletion) {
long grandTotal = 0;
foreach (var result in continuation.Result) {
grandTotal += result;
Console.WriteLine("Mean: {0:N2}, n = 1,000", result/1000.0);
}
Console.WriteLine("\nMean of Means: {0:N2}, n = 10,000",
grandTotal/10000);
}
// Display information on faulted tasks.
else {
foreach (var t in tasks)
Console.WriteLine("Task {0}: {1}", t.Id, t.Status);
}
}
}
// The example displays output like the following:
// Mean: 506.38, n = 1,000
// Mean: 501.01, n = 1,000
// Mean: 505.36, n = 1,000
// Mean: 492.00, n = 1,000
// Mean: 508.36, n = 1,000
// Mean: 503.99, n = 1,000
// Mean: 504.95, n = 1,000
// Mean: 508.58, n = 1,000
// Mean: 490.23, n = 1,000
// Mean: 501.59, n = 1,000
//
// Mean of Means: 502.00, n = 10,000
open System
open System.Threading.Tasks
let tasks =
[| for i = 1 to 10 do
let delayInterval = 18 * i
task {
let mutable total = 0L
do! Task.Delay delayInterval
let rnd = Random()
for _ = 1 to 1000 do
total <- total + (rnd.Next(0, 1000) |> int64)
return total
} |]
let continuation = Task.WhenAll tasks
try
continuation.Wait()
with :? AggregateException ->
()
if continuation.Status = TaskStatus.RanToCompletion then
for result in continuation.Result do
printfn $"Mean: {float result / 1000.:N2}, n = 1,000"
let grandTotal = Array.sum continuation.Result
printfn $"\nMean of Means: {float grandTotal / 10000.:N2}, n = 10,000"
// Display information on faulted tasks.
else
for t in tasks do
printfn $"Task {t.Id}: {t.Status}"
// The example displays output like the following:
// Mean: 506.38, n = 1,000
// Mean: 501.01, n = 1,000
// Mean: 505.36, n = 1,000
// Mean: 492.00, n = 1,000
// Mean: 508.36, n = 1,000
// Mean: 503.99, n = 1,000
// Mean: 504.95, n = 1,000
// Mean: 508.58, n = 1,000
// Mean: 490.23, n = 1,000
// Mean: 501.59, n = 1,000
//
// Mean of Means: 502.00, n = 10,000
Imports System.Collections.Generic
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim tasks(9) As Task(Of Long)
For ctr As Integer = 1 To 10
Dim delayInterval As Integer = 18 * ctr
tasks(ctr - 1) =Task.Run(Async Function()
Dim total As Long = 0
Await Task.Delay(delayInterval)
Dim rnd As New Random()
' Generate 1,000 random numbers.
For n As Integer = 1 To 1000
total += rnd.Next(0, 1000)
Next
Return total
End Function)
Next
Dim continuation = Task.WhenAll(tasks)
Try
continuation.Wait()
Catch ae As AggregateException
End Try
If continuation.Status = TaskStatus.RanToCompletion Then
Dim grandTotal As Long = 0
For Each result in continuation.Result
grandTotal += result
Console.WriteLine("Mean: {0:N2}, n = 1,000", result/1000)
Next
Console.WriteLine()
Console.WriteLine("Mean of Means: {0:N2}, n = 10,000",
grandTotal/10000)
' Display information on faulted tasks.
Else
For Each t In tasks
Console.WriteLine("Task {0}: {1}", t.Id, t.Status)
Next
End If
End Sub
End Module
' The example displays output like the following:
' Mean: 506.38, n = 1,000
' Mean: 501.01, n = 1,000
' Mean: 505.36, n = 1,000
' Mean: 492.00, n = 1,000
' Mean: 508.36, n = 1,000
' Mean: 503.99, n = 1,000
' Mean: 504.95, n = 1,000
' Mean: 508.58, n = 1,000
' Mean: 490.23, n = 1,000
' Mean: 501.59, n = 1,000
'
' Mean of Means: 502.00, n = 10,000
Commenti
La chiamata al metodo WhenAll<TResult>(Task<TResult>[]) non blocca il thread chiamante. Tuttavia, una chiamata alla proprietà Result restituita blocca il thread chiamante.
Se una delle attività fornite viene completata in uno stato di errore, l'attività restituita verrà completata anche in uno stato Faulted, in cui le eccezioni conterranno l'aggregazione del set di eccezioni non di cui è stato eseguito il wrapping da ognuna delle attività fornite.
Se nessuna delle attività fornite ha generato un errore ma almeno una di esse è stata annullata, l'attività restituita terminerà nello stato Canceled.
Se nessuna delle attività ha generato errori e nessuna delle attività è stata annullata, l'attività risultante terminerà nello stato RanToCompletion. La Result dell'attività restituita verrà impostata su una matrice contenente tutti i risultati delle attività fornite nello stesso ordine in cui sono state fornite (ad esempio, se la matrice di attività di input contiene t1, t2, t3, il Result dell'attività di output restituirà un TResult[]
in cui arr[0] == t1.Result, arr[1] == t2.Result, and arr[2] == t3.Result)
.
Se la matrice/enumerabile fornita non contiene attività, l'attività restituita passerà immediatamente a uno stato RanToCompletion prima che venga restituito al chiamante. Il TResult[]
restituito sarà una matrice di 0 elementi.