Udostępnij za pośrednictwem


Async.RunSynchronously <'T> Metoda (F#)

Uruchamiane asynchroniczne obliczeń i oczekuje na jej wynik.

Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Control

Zestaw: FSharp.Core (w FSharp.Core.dll)

// Signature:
static member RunSynchronously : Async<'T> * ?int * ?CancellationToken -> 'T

// Usage:
Async.RunSynchronously (computation)
Async.RunSynchronously (computation, timeout = timeout, cancellationToken = cancellationToken)

Parametry

  • computation
    Typ: asynchroniczne<'T>

    Aby uruchomić obliczeń.

  • timeout
    Typ: int

    Czas w milisekundach czas oczekiwania na wynik obliczeń przed TimeoutException.Jeśli wartość nie jest przewidziane limitu czasu, a następnie domyślna -1 jest używany do odpowiadają Infinite.

  • cancellationToken
    Typ: CancellationToken

    Anulowanie token, który ma być skojarzony z obliczeń.Jeśli jeden nie jest podany, używany jest anulowanie domyślnego tokenu.

Wartość zwracana

Wynik obliczeń.

Uwagi

Jeśli wystąpi wyjątek przy obliczaniu asynchronicznego wyjątek jest re-raised przez tę funkcję.Jeśli nie tokenu anulowania anulowanie domyślnego tokenu jest używany.Limit czasu jest podana w milisekundach.Wartość -1 jest równoważne z Infinite.

Async.RunSynchronouslynie powinien być używany na aplikacje głównego wątku asynchronicznego środowisk programowania, takich jak w - oparte.

Przykład

Poniższy przykład pokazuje, jak używać Async.RunSynchronously uruchomić asynchronicznego obliczeń utworzone za pomocą Async.Parallel, bez limitu czasu.

let bufferData (number:int) =
    [| for count in 1 .. 1000 -> byte (count % 256) |]
    |> Array.permute (fun index -> index)

let writeFile fileName bufferData =
    async {
      use outputFile = System.IO.File.Create(fileName)
      do! outputFile.AsyncWrite(bufferData) 
    }

Seq.init 1000 (fun num -> bufferData num)
|> Seq.mapi (fun num value -> writeFile ("file" + num.ToString() + ".dat") value)
|> Async.Parallel
|> Async.RunSynchronously
|> ignore

Poniższy przykład pokazuje, jak używać Async.RunSynchronously z limitu czasu.

let bufferData (number:int) =
    [| for i in 1 .. 1000 -> byte (i % 256) |]
    |> Array.permute (fun index -> index)

// Create a counter as a reference cell that can be modified in parallel.
let counter = ref 0

// writeFileInner writes the data to an open stream
// that represents the file. It also updates the counter.

// The counter is locked because it will be accessed by
// multiple asynchronous computations.

// The counter must be updated as soon as the
// AsyncWrite completes, in the same synchronous
// program flow. There must not be a let! or do! between
// the AsyncWrite call and the counter update.
let writeFileInner (stream:System.IO.Stream) data =
    let result = stream.AsyncWrite(data)
    lock counter (fun () -> counter := !counter + 1)
    result

// writeFile encapsulates the asynchronous write operation.
// The do! includes both the file I/O operation and the
// counter update in order to keep those operations
// together.
let writeFile fileName bufferData =
    async {
      use outputFile = System.IO.File.Create(fileName)
      do! writeFileInner outputFile bufferData
      // Updating the counter here would not be effective.
    }

let async1 = Seq.init 1000 (fun num -> bufferData num)
             |> Seq.mapi (fun num value ->
                 writeFile ("file" + num.ToString() + ".dat") value)
             |> Async.Parallel
try
    Async.RunSynchronously(async1, 100) |> ignore
with
   | exc -> printfn "%s" exc.Message
            printfn "%d write operations completed successfully." !counter

Przykładowe dane wyjściowe

  
  

Platformy

Windows 8, Windows 7, Windows Server 2012 Windows Server 2008 R2

Informacje o wersji

F# Core wersji biblioteki

Obsługiwane: 2.0, 4.0, przenośne

Zobacz też

Informacje

Klasa Control.Async (F#)

Obszar nazw Microsoft.FSharp.Control (F#)