Método Async.SwitchToContext (F#)
Cria uma computação assíncrona que executa o seu uso de continuação do Post método no objeto de contexto de sincronização.
Caminho do namespace/módulo: Microsoft.FSharp.Control
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
static member SwitchToContext : SynchronizationContext -> Async<unit>
// Usage:
Async.SwitchToContext (syncContext)
Parâmetros
syncContext
Tipo: SynchronizationContextO contexto de sincronização para aceitar a computação lançada.
Valor de retorno
Uma computação assíncrona que utiliza o syncContext o contexto para executar.
Comentários
Se syncContext é nulo e a computação assíncrona é equivalente a Async.SwitchToThreadPool.
Exemplo
O exemplo de código a seguir ilustra como usar Async.SwitchToContext para alternar para o segmento de interface do usuário para atualizar a interface do usuário. Neste, caso uma barra de progresso que indica o estado de conclusão de uma computação é atualizado.
open System.Windows.Forms
let form = new Form(Text = "Test Form", Width = 400, Height = 400)
let syncContext = System.Threading.SynchronizationContext()
let button1 = new Button(Text = "Start")
let label1 = new Label(Text = "", Height = 200, Width = 200,
Top = button1.Height + 10)
form.Controls.AddRange([| button1; label1 |] )
let async1(syncContext, form : System.Windows.Forms.Form) =
async {
let label1 = form.Controls.[1]
// Do something.
do! Async.Sleep(10000)
let threadName = System.Threading.Thread.CurrentThread.Name
let threadNumber = System.Threading.Thread.CurrentThread.ManagedThreadId
label1.Text <- label1.Text + sprintf "Something [%s] [%d]" threadName threadNumber
// Switch to the UI thread and update the UI.
do! Async.SwitchToContext(syncContext)
let threadName = System.Threading.Thread.CurrentThread.Name
let threadNumber = System.Threading.Thread.CurrentThread.ManagedThreadId
label1.Text <- label1.Text + sprintf "Here [%s] [%d]" threadName threadNumber
// Switch back to the thread pool.
do! Async.SwitchToThreadPool()
// Do something.
do! Async.Sleep(10000)
let threadName = System.Threading.Thread.CurrentThread.Name
let threadNumber = System.Threading.Thread.CurrentThread.ManagedThreadId
label1.Text <- label1.Text +
sprintf "Switched to thread pool [%s] [%d]" threadName threadNumber
}
let buttonClick(sender:obj, args) =
let button = sender :?> Button
Async.Start(async1(syncContext, button.Parent :?> Form))
let threadName = System.Threading.Thread.CurrentThread.Name
let threadNumber = System.Threading.Thread.CurrentThread.ManagedThreadId
button.Parent.Text <- sprintf "Started asynchronous workflow [%s] [%d]" threadName threadNumber
()
button1.Click.AddHandler(fun sender args -> buttonClick(sender, args))
Application.Run(form)
Plataformas
O Windows 7, SP2 do Windows Vista, Windows XP SP3, Windows XP Professional x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Informações sobre versão
O tempo de execução F#
Compatível com: 2.0, 4.0
Silverlight
Compatível com: 3
Consulte também
Referência
Microsoft.FSharp.Control Namespace (F#)
Histórico de alterações
Date |
History |
Motivo |
---|---|---|
Julho de 2010 |
Exemplo de código adicionado. |
Aprimoramento de informações. |