Observação
O acesso a essa página exige autorização. Você pode tentar entrar ou alterar diretórios.
O acesso a essa página exige autorização. Você pode tentar alterar os diretórios.
O .NET fornece os dois padrões a seguir para executar operações assíncronas associadas a E/S e computação:
Modelo de Programação Assíncrono (APM), no qual operações assíncronas são representadas por um par de métodos de início/fim. Por exemplo: FileStream.BeginRead e Stream.EndRead.
Padrão assíncrono baseado em evento (EAP), no qual operações assíncronas são representadas por um par de método/evento chamado
<OperationName>Asynce<OperationName>Completed. Por exemplo: WebClient.DownloadStringAsync e WebClient.DownloadStringCompleted.
A TPL (Biblioteca Paralela de Tarefas) pode ser usada de várias maneiras em conjunto com qualquer um dos padrões assíncronos. Você pode expor operações APM e EAP como objetos Task para consumidores de biblioteca ou pode expor os padrões do APM, mas usar Task objetos para implementá-los internamente. Em ambos os cenários, usando Task objetos, você pode simplificar o código e aproveitar a seguinte funcionalidade útil:
Registrar chamadas de retorno, sob a forma de continuação de tarefas, a qualquer momento após a tarefa ter começado.
Coordene várias operações executadas em resposta a um método
Begin_usando os métodos ContinueWhenAll e ContinueWhenAny ou os métodos WaitAll e WaitAny.Encapsular operações associadas a E/S assíncronas e associadas à computação no mesmo objeto
Task.Monitore o status do objeto
Task.Realizar marshaling do status de uma operação para um objeto
Taskusando TaskCompletionSource<TResult>.
Encapsular operações APM em uma Tarefa
As classes System.Threading.Tasks.TaskFactory e System.Threading.Tasks.TaskFactory<TResult> fornecem várias sobrecargas dos métodos TaskFactory.FromAsync e TaskFactory<TResult>.FromAsync que permitem encapsular um par de métodos de início/fim do APM em uma instância Task ou Task<TResult>. As várias sobrecargas acomodam qualquer par de métodos de início/fim que tenham de zero a três parâmetros de entrada.
Para pares que têm métodos End que retornam um valor (um Function no Visual Basic), use os métodos em TaskFactory<TResult> que criam um Task<TResult>. Para métodos End que retornam nulos (um Sub no Visual Basic), use os métodos em TaskFactory que criam um Task.
Para os poucos casos em que o método Begin tem mais de três parâmetros ou contém parâmetros ref ou out, sobrecargas de FromAsync adicionais que encapsulam apenas o método End são fornecidas.
O exemplo a seguir mostra a assinatura para a sobrecarga FromAsync que corresponde aos métodos FileStream.BeginRead e FileStream.EndRead.
public Task<TResult> FromAsync<TArg1, TArg2, TArg3>(
Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, //BeginRead
Func<IAsyncResult, TResult> endMethod, //EndRead
TArg1 arg1, // the byte[] buffer
TArg2 arg2, // the offset in arg1 at which to start writing data
TArg3 arg3, // the maximum number of bytes to read
object state // optional state information
)
Public Function FromAsync(Of TArg1, TArg2, TArg3)(
ByVal beginMethod As Func(Of TArg1, TArg2, TArg3, AsyncCallback, Object, IAsyncResult),
ByVal endMethod As Func(Of IAsyncResult, TResult),
ByVal dataBuffer As TArg1,
ByVal byteOffsetToStartAt As TArg2,
ByVal maxBytesToRead As TArg3,
ByVal stateInfo As Object)
Essa sobrecarga usa três parâmetros de entrada, da seguinte maneira. O primeiro parâmetro é um delegado Func<T1,T2,T3,T4,T5,TResult> que tem a mesma assinatura do método FileStream.BeginRead. O segundo parâmetro é um delegado Func<T,TResult> que recebe um IAsyncResult e retorna um TResult. Como EndRead retorna um inteiro, o compilador infere o tipo de TResult como Int32 e o tipo da tarefa como Task. Os últimos quatro parâmetros são idênticos aos do método FileStream.BeginRead:
O buffer no qual armazenar os dados do arquivo.
O deslocamento no buffer no qual começar a gravar dados.
A quantidade máxima de dados a serem lidos do arquivo.
Um objeto opcional que armazena dados de estado definidos pelo usuário para passar para o callback.
Use ContinueWith para a funcionalidade do retorno de chamada
Se você precisar de acesso aos dados no arquivo, em vez de apenas o número de bytes, o método FromAsync não será suficiente. Em vez disso, use Task, cuja propriedade Result contém os dados do arquivo. Você pode fazer isso adicionando uma continuação à tarefa original. A continuação executa o trabalho que normalmente seria executado pelo delegado AsyncCallback. É invocada quando o antecedente é concluído e o buffer de dados foi preenchido. (O objeto FileStream deve ser fechado antes de retornar.)
O exemplo a seguir mostra como retornar um Task que encapsula o par BeginRead/EndRead da classe FileStream.
const int MAX_FILE_SIZE = 14000000;
public static Task<string> GetFileStringAsync(string path)
{
FileInfo fi = new FileInfo(path);
byte[] data = null;
data = new byte[fi.Length];
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, data.Length, true);
//Task<int> returns the number of bytes read
Task<int> task = Task<int>.Factory.FromAsync(
fs.BeginRead, fs.EndRead, data, 0, data.Length, null);
// It is possible to do other work here while waiting
// for the antecedent task to complete.
// ...
// Add the continuation, which returns a Task<string>.
return task.ContinueWith((antecedent) =>
{
fs.Close();
// Result = "number of bytes read" (if we need it.)
if (antecedent.Result < 100)
{
return "Data is too small to bother with.";
}
else
{
// If we did not receive the entire file, the end of the
// data buffer will contain garbage.
if (antecedent.Result < data.Length)
Array.Resize(ref data, antecedent.Result);
// Will be returned in the Result property of the Task<string>
// at some future point after the asynchronous file I/O operation completes.
return new UTF8Encoding().GetString(data);
}
});
}
Const MAX_FILE_SIZE As Integer = 14000000
Shared Function GetFileStringAsync(ByVal path As String) As Task(Of String)
Dim fi As New FileInfo(path)
Dim data(fi.Length - 1) As Byte
Dim fs As FileStream = New FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, data.Length, True)
' Task(Of Integer) returns the number of bytes read
Dim myTask As Task(Of Integer) = Task(Of Integer).Factory.FromAsync(
AddressOf fs.BeginRead, AddressOf fs.EndRead, data, 0, data.Length, Nothing)
' It is possible to do other work here while waiting
' for the antecedent task to complete.
' ...
' Add the continuation, which returns a Task<string>.
Return myTask.ContinueWith(Function(antecedent)
fs.Close()
If (antecedent.Result < 100) Then
Return "Data is too small to bother with."
End If
' If we did not receive the entire file, the end of the
' data buffer will contain garbage.
If (antecedent.Result < data.Length) Then
Array.Resize(data, antecedent.Result)
End If
' Will be returned in the Result property of the Task<string>
' at some future point after the asynchronous file I/O operation completes.
Return New UTF8Encoding().GetString(data)
End Function)
End Function
O método pode ser chamado, da seguinte maneira.
Task<string> t = GetFileStringAsync(path);
// Do some other work:
// ...
try
{
Console.WriteLine(t.Result.Substring(0, 500));
}
catch (AggregateException ae)
{
Console.WriteLine(ae.InnerException.Message);
}
Dim myTask As Task(Of String) = GetFileStringAsync(path)
' Do some other work
' ...
Try
Console.WriteLine(myTask.Result.Substring(0, 500))
Catch ex As AggregateException
Console.WriteLine(ex.InnerException.Message)
End Try
Fornecer dados de estado personalizados
Em operações típicas de IAsyncResult, se o delegado do AsyncCallback exigir alguns dados de estado personalizados, você precisará passá-los pelo último parâmetro no método Begin, para que os dados possam ser incorporados no objeto IAsyncResult que depois é passado para o método de retorno de chamada. Normalmente, isso não é necessário quando os métodos FromAsync são usados. Se os dados personalizados forem conhecidos pela continuação, ele poderão ser capturados diretamente no delegado de continuação. O exemplo a seguir se assemelha ao exemplo anterior, mas em vez de examinar a propriedade Result do antecedente, a continuação examina os dados de estado personalizados que são diretamente acessíveis ao delegado de usuário da continuação.
public Task<string> GetFileStringAsync2(string path)
{
FileInfo fi = new FileInfo(path);
byte[] data = new byte[fi.Length];
MyCustomState state = GetCustomState();
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, data.Length, true);
// We still pass null for the last parameter because
// the state variable is visible to the continuation delegate.
Task<int> task = Task<int>.Factory.FromAsync(
fs.BeginRead, fs.EndRead, data, 0, data.Length, null);
return task.ContinueWith((antecedent) =>
{
// It is safe to close the filestream now.
fs.Close();
// Capture custom state data directly in the user delegate.
// No need to pass it through the FromAsync method.
if (state.StateData.Contains("New York, New York"))
{
return "Start spreading the news!";
}
else
{
// If we did not receive the entire file, the end of the
// data buffer will contain garbage.
if (antecedent.Result < data.Length)
Array.Resize(ref data, antecedent.Result);
// Will be returned in the Result property of the Task<string>
// at some future point after the asynchronous file I/O operation completes.
return new UTF8Encoding().GetString(data);
}
});
}
Public Function GetFileStringAsync2(ByVal path As String) As Task(Of String)
Dim fi = New FileInfo(path)
Dim data(fi.Length - 1) As Byte
Dim state As New MyCustomState()
Dim fs As New FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, data.Length, True)
' We still pass null for the last parameter because
' the state variable is visible to the continuation delegate.
Dim myTask As Task(Of Integer) = Task(Of Integer).Factory.FromAsync(
AddressOf fs.BeginRead, AddressOf fs.EndRead, data, 0, data.Length, Nothing)
Return myTask.ContinueWith(Function(antecedent)
fs.Close()
' Capture custom state data directly in the user delegate.
' No need to pass it through the FromAsync method.
If (state.StateData.Contains("New York, New York")) Then
Return "Start spreading the news!"
End If
' If we did not receive the entire file, the end of the
' data buffer will contain garbage.
If (antecedent.Result < data.Length) Then
Array.Resize(data, antecedent.Result)
End If
'/ Will be returned in the Result property of the Task<string>
'/ at some future point after the asynchronous file I/O operation completes.
Return New UTF8Encoding().GetString(data)
End Function)
End Function
Sincronizar várias tarefas FromAsync
Os métodos ContinueWhenAll estáticos e ContinueWhenAny fornecem flexibilidade adicional quando usados em conjunto com os métodos FromAsync. O exemplo a seguir mostra como iniciar várias operações de E/S assíncronas e aguardar que todas elas sejam concluídas antes de executar a continuação.
public Task<string> GetMultiFileData(string[] filesToRead)
{
FileStream fs;
Task<string>[] tasks = new Task<string>[filesToRead.Length];
byte[] fileData = null;
for (int i = 0; i < filesToRead.Length; i++)
{
fileData = new byte[0x1000];
fs = new FileStream(filesToRead[i], FileMode.Open, FileAccess.Read, FileShare.Read, fileData.Length, true);
// By adding the continuation here, the
// Result of each task will be a string.
tasks[i] = Task<int>.Factory.FromAsync(
fs.BeginRead, fs.EndRead, fileData, 0, fileData.Length, null)
.ContinueWith((antecedent) =>
{
fs.Close();
// If we did not receive the entire file, the end of the
// data buffer will contain garbage.
if (antecedent.Result < fileData.Length)
Array.Resize(ref fileData, antecedent.Result);
// Will be returned in the Result property of the Task<string>
// at some future point after the asynchronous file I/O operation completes.
return new UTF8Encoding().GetString(fileData);
});
}
// Wait for all tasks to complete.
return Task<string>.Factory.ContinueWhenAll(tasks, (data) =>
{
// Propagate all exceptions and mark all faulted tasks as observed.
Task.WaitAll(data);
// Combine the results from all tasks.
StringBuilder sb = new StringBuilder();
foreach (var t in data)
{
sb.Append(t.Result);
}
// Final result to be returned eventually on the calling thread.
return sb.ToString();
});
}
Public Function GetMultiFileData(ByVal filesToRead As String()) As Task(Of String)
Dim fs As FileStream
Dim tasks(filesToRead.Length - 1) As Task(Of String)
Dim fileData() As Byte = Nothing
For i As Integer = 0 To filesToRead.Length
fileData(&H1000) = New Byte()
fs = New FileStream(filesToRead(i), FileMode.Open, FileAccess.Read, FileShare.Read, fileData.Length, True)
' By adding the continuation here, the
' Result of each task will be a string.
tasks(i) = Task(Of Integer).Factory.FromAsync(AddressOf fs.BeginRead,
AddressOf fs.EndRead,
fileData,
0,
fileData.Length,
Nothing).
ContinueWith(Function(antecedent)
fs.Close()
'If we did not receive the entire file, the end of the
' data buffer will contain garbage.
If (antecedent.Result < fileData.Length) Then
ReDim Preserve fileData(antecedent.Result)
End If
'Will be returned in the Result property of the Task<string>
' at some future point after the asynchronous file I/O operation completes.
Return New UTF8Encoding().GetString(fileData)
End Function)
Next
Return Task(Of String).Factory.ContinueWhenAll(tasks, Function(data)
' Propagate all exceptions and mark all faulted tasks as observed.
Task.WaitAll(data)
' Combine the results from all tasks.
Dim sb As New StringBuilder()
For Each t As Task(Of String) In data
sb.Append(t.Result)
Next
' Final result to be returned eventually on the calling thread.
Return sb.ToString()
End Function)
End Function
Tarefas FromAsync somente para o método End
Para os poucos casos em que o método Begin requer mais de três parâmetros de entrada ou tem parâmetros ref ou out, você pode usar as sobrecargas de FromAsync, por exemplo, TaskFactory<TResult>.FromAsync(IAsyncResult, Func<IAsyncResult,TResult>), que representam apenas o método End. Esses métodos também podem ser usados em qualquer cenário em que você receba um IAsyncResult e queira encapsulá-lo em uma Tarefa.
static Task<String> ReturnTaskFromAsyncResult()
{
IAsyncResult ar = DoSomethingAsynchronously();
Task<String> t = Task<string>.Factory.FromAsync(ar, _ =>
{
return (string)ar.AsyncState;
});
return t;
}
Shared Function ReturnTaskFromAsyncResult() As Task(Of String)
Dim ar As IAsyncResult = DoSomethingAsynchronously()
Dim t As Task(Of String) = Task(Of String).Factory.FromAsync(ar, Function(res) CStr(res.AsyncState))
Return t
End Function
Iniciar e cancelar tarefas FromAsync
A tarefa retornada por um método FromAsync tem um status de WaitingForActivation e será iniciada pelo sistema em algum momento após a criação da tarefa. Se você tentar chamar o comando "Start" em tal tarefa, uma exceção será gerada.
Você não pode cancelar uma tarefa FromAsync, pois as APIs .NET subjacentes atualmente não dão suporte ao cancelamento em andamento de E/S de arquivo ou rede. Você pode adicionar funcionalidades de cancelamento a um método que encapsula uma chamada FromAsync, mas você só pode responder ao cancelamento antes que FromAsync seja chamado ou depois de concluído (por exemplo, em uma tarefa de continuação).
Algumas classes que dão suporte ao EAP, por exemplo, WebClient, dão suporte ao cancelamento e você pode integrar essa funcionalidade de cancelamento nativo usando tokens de cancelamento.
Expor operações EAP complexas como tarefas
O TPL não fornece métodos especificamente projetados para encapsular uma operação assíncrona baseada em evento da mesma forma que a família de métodos FromAsync encapsula o padrão IAsyncResult. No entanto, o TPL fornece a classe System.Threading.Tasks.TaskCompletionSource<TResult>, que pode ser usada para representar qualquer conjunto arbitrário de operações como um Task<TResult>. As operações podem ser síncronas ou assíncronas e podem ser associadas a E/S ou associadas à computação, ou ambas.
O exemplo a seguir mostra como usar um TaskCompletionSource<TResult> para expor um conjunto de operações de WebClient assíncronas ao código do cliente como um Task<TResult>básico. O método permite que você insira uma matriz de URLs da Web e um termo ou nome a ser pesquisado e retorna o número de vezes que o termo de pesquisa ocorre em cada site.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
public class SimpleWebExample
{
public Task<string[]> GetWordCountsSimplified(string[] urls, string name,
CancellationToken token)
{
TaskCompletionSource<string[]> tcs = new TaskCompletionSource<string[]>();
WebClient[] webClients = new WebClient[urls.Length];
object m_lock = new object();
int count = 0;
List<string> results = new List<string>();
// If the user cancels the CancellationToken, then we can use the
// WebClient's ability to cancel its own async operations.
token.Register(() =>
{
foreach (var wc in webClients)
{
if (wc != null)
wc.CancelAsync();
}
});
for (int i = 0; i < urls.Length; i++)
{
webClients[i] = new WebClient();
#region callback
// Specify the callback for the DownloadStringCompleted
// event that will be raised by this WebClient instance.
webClients[i].DownloadStringCompleted += (obj, args) =>
{
// Argument validation and exception handling omitted for brevity.
// Split the string into an array of words,
// then count the number of elements that match
// the search term.
string[] words = args.Result.Split(' ');
string NAME = name.ToUpper();
int nameCount = (from word in words.AsParallel()
where word.ToUpper().Contains(NAME)
select word)
.Count();
// Associate the results with the url, and add new string to the array that
// the underlying Task object will return in its Result property.
lock (m_lock)
{
results.Add(String.Format("{0} has {1} instances of {2}", args.UserState, nameCount, name));
// If this is the last async operation to complete,
// then set the Result property on the underlying Task.
count++;
if (count == urls.Length)
{
tcs.TrySetResult(results.ToArray());
}
}
};
#endregion
// Call DownloadStringAsync for each URL.
Uri address = null;
address = new Uri(urls[i]);
webClients[i].DownloadStringAsync(address, address);
} // end for
// Return the underlying Task. The client code
// waits on the Result property, and handles exceptions
// in the try-catch block there.
return tcs.Task;
}
}
Imports System.Collections.Generic
Imports System.Net
Imports System.Threading
Imports System.Threading.Tasks
Public Class SimpleWebExample
Dim tcs As New TaskCompletionSource(Of String())
Dim token As CancellationToken
Dim results As New List(Of String)
Dim m_lock As New Object()
Dim count As Integer
Dim addresses() As String
Dim nameToSearch As String
Public Function GetWordCountsSimplified(ByVal urls() As String, ByVal str As String,
ByVal token As CancellationToken) As Task(Of String())
addresses = urls
nameToSearch = str
Dim webClients(urls.Length - 1) As WebClient
' If the user cancels the CancellationToken, then we can use the
' WebClient's ability to cancel its own async operations.
token.Register(Sub()
For Each wc As WebClient In webClients
If wc IsNot Nothing Then
wc.CancelAsync()
End If
Next
End Sub)
For i As Integer = 0 To urls.Length - 1
webClients(i) = New WebClient()
' Specify the callback for the DownloadStringCompleted
' event that will be raised by this WebClient instance.
AddHandler webClients(i).DownloadStringCompleted, AddressOf WebEventHandler
Dim address As New Uri(urls(i))
' Pass the address, and also use it for the userToken
' to identify the page when the delegate is invoked.
webClients(i).DownloadStringAsync(address, address)
Next
' Return the underlying Task. The client code
' waits on the Result property, and handles exceptions
' in the try-catch block there.
Return tcs.Task
End Function
Public Sub WebEventHandler(ByVal sender As Object, ByVal args As DownloadStringCompletedEventArgs)
If args.Cancelled = True Then
tcs.TrySetCanceled()
Return
ElseIf args.Error IsNot Nothing Then
tcs.TrySetException(args.Error)
Return
Else
' Split the string into an array of words,
' then count the number of elements that match
' the search term.
Dim words() As String = args.Result.Split(" "c)
Dim name As String = nameToSearch.ToUpper()
Dim nameCount = (From word In words.AsParallel()
Where word.ToUpper().Contains(name)
Select word).Count()
' Associate the results with the url, and add new string to the array that
' the underlying Task object will return in its Result property.
SyncLock (m_lock)
results.Add(String.Format("{0} has {1} instances of {2}", args.UserState, nameCount, nameToSearch))
count = count + 1
If (count = addresses.Length) Then
tcs.TrySetResult(results.ToArray())
End If
End SyncLock
End If
End Sub
End Class
Para obter um exemplo mais completo, que inclui tratamento de exceção adicional e mostra como chamar o método do código do cliente, consulte Como encapsular padrões EAP em uma tarefa.
Lembre-se de que qualquer tarefa criada por um TaskCompletionSource<TResult> será iniciada por esse TaskCompletionSource e, portanto, o código do usuário não deve chamar o método Start nessa tarefa.
Implementar o padrão do APM usando tarefas
Em alguns cenários, pode ser desejável expor diretamente o padrão de IAsyncResult usando pares de método begin/end em uma API. Por exemplo, talvez você queira manter a consistência com AS APIs existentes ou pode ter ferramentas automatizadas que exigem esse padrão. Nesses casos, você pode usar Task objetos para simplificar a forma como o padrão do APM é implementado internamente.
O exemplo a seguir mostra como usar as tarefas para implementar um par de métodos APM de início/fim para um método de computação limitada.
class Calculator
{
public IAsyncResult BeginCalculate(int decimalPlaces, AsyncCallback ac, object state)
{
Console.WriteLine($"Calling BeginCalculate on thread {Thread.CurrentThread.ManagedThreadId}");
Task<string> f = Task<string>.Factory.StartNew(_ => Compute(decimalPlaces), state);
if (ac != null) f.ContinueWith((res) => ac(f));
return f;
}
public string Compute(int numPlaces)
{
Console.WriteLine($"Calling compute on thread {Thread.CurrentThread.ManagedThreadId}");
// Simulating some heavy work.
Thread.SpinWait(500000000);
// Actual implementation left as exercise for the reader.
// Several examples are available on the Web.
return "3.14159265358979323846264338327950288";
}
public string EndCalculate(IAsyncResult ar)
{
Console.WriteLine($"Calling EndCalculate on thread {Thread.CurrentThread.ManagedThreadId}");
return ((Task<string>)ar).Result;
}
}
public class CalculatorClient
{
static int decimalPlaces = 12;
public static void Main()
{
Calculator calc = new Calculator();
int places = 35;
AsyncCallback callBack = new AsyncCallback(PrintResult);
IAsyncResult ar = calc.BeginCalculate(places, callBack, calc);
// Do some work on this thread while the calculator is busy.
Console.WriteLine("Working...");
Thread.SpinWait(500000);
Console.ReadLine();
}
public static void PrintResult(IAsyncResult result)
{
Calculator c = (Calculator)result.AsyncState;
string piString = c.EndCalculate(result);
Console.WriteLine($"Calling PrintResult on thread {Thread.CurrentThread.ManagedThreadId}; result = {piString}");
}
}
Class Calculator
Public Function BeginCalculate(ByVal decimalPlaces As Integer, ByVal ac As AsyncCallback, ByVal state As Object) As IAsyncResult
Console.WriteLine("Calling BeginCalculate on thread {0}", Thread.CurrentThread.ManagedThreadId)
Dim myTask = Task(Of String).Factory.StartNew(Function(obj) Compute(decimalPlaces), state)
myTask.ContinueWith(Sub(antecedent) ac(myTask))
End Function
Private Function Compute(ByVal decimalPlaces As Integer)
Console.WriteLine("Calling compute on thread {0}", Thread.CurrentThread.ManagedThreadId)
' Simulating some heavy work.
Thread.SpinWait(500000000)
' Actual implementation left as exercise for the reader.
' Several examples are available on the Web.
Return "3.14159265358979323846264338327950288"
End Function
Public Function EndCalculate(ByVal ar As IAsyncResult) As String
Console.WriteLine("Calling EndCalculate on thread {0}", Thread.CurrentThread.ManagedThreadId)
Return CType(ar, Task(Of String)).Result
End Function
End Class
Class CalculatorClient
Shared decimalPlaces As Integer
Shared Sub Main()
Dim calc As New Calculator
Dim places As Integer = 35
Dim callback As New AsyncCallback(AddressOf PrintResult)
Dim ar As IAsyncResult = calc.BeginCalculate(places, callback, calc)
' Do some work on this thread while the calculator is busy.
Console.WriteLine("Working...")
Thread.SpinWait(500000)
Console.ReadLine()
End Sub
Public Shared Sub PrintResult(ByVal result As IAsyncResult)
Dim c As Calculator = CType(result.AsyncState, Calculator)
Dim piString As String = c.EndCalculate(result)
Console.WriteLine("Calling PrintResult on thread {0}; result = {1}",
Thread.CurrentThread.ManagedThreadId, piString)
End Sub
End Class
Use o exemplo de código StreamExtensions
O arquivo StreamExtensions.cs, no repositório extras de extensões paralelas do .NET Standard, contém várias implementações de referência que usam objetos Task para E/S de rede e arquivo assíncrono.