Async.Start, méthode (F#)
Démarre le calcul asynchrone dans le pool de threads.N'attend pas son résultat.
Espace de noms/Chemin du module : Microsoft.FSharp.Control
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
static member Start : Async<unit> * ?CancellationToken -> unit
// Usage:
Async.Start (computation)
Async.Start (computation, cancellationToken = cancellationToken)
Paramètres
computation
Type : Async<unit>Calcul à exécuter de façon asynchrone.
cancellationToken
Type : CancellationTokenJeton d'annulation à associer au calcul.Si aucun jeton n'est fourni, le jeton d'annulation par défaut est utilisé.
Notes
Si aucun jeton d'annulation n'est fourni, le jeton d'annulation par défaut est utilisé.
Exemple
L'exemple de code suivant montre comment démarrer un calcul asynchrone sur le pool de threads.
open System.Windows.Forms
let bufferData = Array.zeroCreate<byte> 100000000
let async1 =
async {
use outputFile = System.IO.File.Create("longoutput.dat")
do! outputFile.AsyncWrite(bufferData)
}
let form = new Form(Text = "Test Form")
let button = new Button(Text = "Start")
form.Controls.Add(button)
button.Click.Add(fun args -> Async.Start(async1))
Application.Run(form)
Plateformes
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informations de version
Versions de bibliothèque principale F#
Prise en charge dans : 2,0, 4,0, portables