9

我可以写这样的东西吗

let echo (ws: WebSocket) =
    fun ctx -> socket {
        let loop = ref true            
        while !loop do
            let! message = Async.Choose (ws.read()) (inbox.Receive())
            match message with
            | Choice1Of2 (wsMessage) ->
                match wsMessage with
                | Ping, _, _ -> do! ws.send Pong [||] true
                | _ -> ()
            | Choice2Of2 pushMessage -> do! ws.send Text pushMessage true
    }

还是我需要 2 个单独的套接字循环来进行并发读写?

4

2 回答 2

9

我认为您可以使用解决此问题Async.Choose(有很多实现-尽管我不确定最规范的实现在哪里)。

也就是说,您当然可以创建两个循环 - 在内部读取一个,socket { .. }以便您可以从 Web 套接字接收数据;写作可以是普通的async { ... }块。

这样的事情应该可以解决问题:

let echo (ws: WebSocket) =  
    // Loop that waits for the agent and writes to web socket
    let notifyLoop = async { 
      while true do 
        let! msg = inbox.Receive()
        do! ws.send Text msg }

    // Start this using cancellation token, so that you can stop it later
    let cts = new CancellationTokenSource()
    Async.Start(notifyLoop, cts.Token)

    // The loop that reads data from the web socket
    fun ctx -> socket {
        let loop = ref true            
        while !loop do
            let! message = ws.read()
            match message with
            | Ping, _, _ -> do! ws.send Pong [||] true
            | _ -> () }
于 2015-10-09T14:10:21.187 回答
2

Async.Choose 没有正确的实现(至少在这种情况下),所以我们需要两个异步循环来进行并发读写;看到这个更多细节

于 2015-10-09T13:43:08.190 回答