Partilhar via


Async.RunSynchronously <'T>. Método (F#)

Executa a computação assíncrona e espera o resultado.

Namespace/Module Path: Microsoft.FSharp.Control

Assembly: FSharp.Core (em FSharp.Core.dll)

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

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

Parâmetros

  • computation
    Tipo: Async<'T>

    A computação a execução.

  • timeout
    Tipo: int

    A quantidade de tempo em milissegundos para esperar o resultado de computação antes de gerar TimeoutException.Se nenhum valor é fornecido para o tempo limite em uma opção de -1 é usada para corresponder a Infinite.

  • cancellationToken
    Tipo: CancellationToken

    O token cancelar a ser associado com a computação.Se não for fornecido, o token padrão cancelar é usado.

Valor de retorno

O resultado de computação.

Comentários

Se ocorrer uma exceção na computação assíncrono em novamente uma exceção é gerada por essa função.Se nenhum token cancelar é fornecido no token padrão cancelar é usado.O parâmetro é dado de tempo limite em milissegundos.Um valor de -1 é equivalente a Infinite.

Async.RunSynchronously não deve ser usado no segmento principal em ambientes assíncronas de programação, como em aplicativos baseados no.

Exemplo

O exemplo a seguir mostra como usar Async.RunSynchronously para executar uma computação assíncrono criada usando Async.Parallel, sem nenhum tempo limite.

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

O exemplo a seguir mostra como usar Async.RunSynchronously com um tempo limite.

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

A saída de exemplo

  
  

Plataformas

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

Informações de Versão

Versões da biblioteca principal de F#

Suportado em: 2,0, 4,0, portáteis

Consulte também

Referência

Classe Control.Async (F#)

Microsoft.FSharp.Control Namespace (F#)