Async.TryCancelled不能与Async.RunSynchron一起使用

时间:2012-03-07 12:12:47

标签: asynchronous f# agent mailboxprocessor

我尝试创建一个基于用户交互更新UI的代理。如果用户单击按钮,则应刷新GUI。模型的准备需要很长时间,因此如果用户点击其他按钮,则需要取消准备并启动新的准备。

到目前为止我所拥有的:

open System.Threading
type private RefreshMsg = 
    | RefreshMsg of AsyncReplyChannel<CancellationTokenSource>

type RefresherAgent() =  
    let mutable cancel : CancellationTokenSource = null

    let doSomeModelComputation i =
        async { 
          printfn "start %A" i
          do! Async.Sleep(1000)
          printfn "middle %A" i
          do! Async.Sleep(1000)
          printfn "end %A" i
        }
    let mbox = 
        MailboxProcessor.Start(fun mbx ->
            let rec loop () = async {
                let! msg = mbx.Receive()
                match msg with
                | RefreshMsg(chnl) ->
                    let cancelSrc = new CancellationTokenSource()
                    chnl.Reply(cancelSrc)
                    let update = async {
                                    do! doSomeModelComputation 1
                                    do! doSomeModelComputation 2
                                    //do! updateUI // not important now
                                 }
                    let cupdate = Async.TryCancelled(update, (fun c -> printfn "refresh cancelled"))
                    Async.RunSynchronously(cupdate, -1, cancelSrc.Token)
                    printfn "loop()"
                    return! loop()
            }
            loop ())
    do
        mbox.Error.Add(fun exn -> printfn "Error in refresher: %A" exn)
    member x.Refresh() = 
        if cancel <> null then
            // I don't handle whether the previous computation finished
            // I just cancel it; might be improved
            cancel.Cancel()
            cancel.Dispose()
        cancel <- mbox.PostAndReply(fun reply -> RefreshMsg(reply))
        printfn "x.Refresh end"

//sample  
let agent = RefresherAgent()
agent.Refresh()
System.Threading.Thread.Sleep(1500)
agent.Refresh()

我为每个请求返回一个CancellationTokenSource并将其存储在一个可变变量中(x.Refresh()是线程安全的,它在UI线程上调用)。 如果第一次调用Refresh(),则返回取消源。如果第二次调用Refresh(),我调用Cancel,它应该中止我通过Async.RunSynchronously运行的异步任务。

然而,提出了一个例外。我的样本的输出是

x.Refresh end
start 1
middle 1
end 1
refresh cancelled
Error in refresher: System.OperationCanceledException: The operation was canceled.
   at Microsoft.FSharp.Control.AsyncBuilderImpl.commit[a](Result`1 res)

现在我想到这一点,它可能是有意义的,因为代理运行的线程被混淆了,对吧?但是,我如何实现理想的行为?


我需要在代理中取消异步工作流,以便代理可以继续使用新消息。为什么我要使用邮箱处理器?因为保证只有一个线程试图创建UI模型,所以我节省了资源。

假设我通过从多个Web服务下载数据来创建UI模型,这就是我使用异步调用的原因。当用户更改组合并选择其他选项时,我想停止使用旧值查询webservices(=取消异步调用),并希望使用新值创建新的模型基础od服务调用。

我也欢迎任何建议,我可以使用而不是我的解决方案,并解决我的问题。

1 个答案:

答案 0 :(得分:2)

我很难理解你想要达到的目标。但也许这没关系 - 错误只是说你用RunSynchronously执行的工作流被取消了(RunSynchronously会抛出异常) - 所以你可以将这个调用包装成一个try-match块而忽略OC -Exception

更好的选择可能是重构你的杯形日期和内部的尝试匹配 - 如果你直接捕获OC-Exceptions,你甚至可以将TryCancelled带入其中;)

let update = 
   async {
      try
         do! doSomeModelComputation 1
         do! doSomeModelComputation 2
      with
      | :? OperationCanceledException -> 
           printfn "refresh cancelled"
   }
Async.RunSynchronously(update, -1, cancelSrc.Token)

但我仍然没有得到你想要这个同步的部分