是否可以在Akka.Net actor计算中的Async <'t>上等待(不阻塞)?我想实现类似以下的东西.
actor {
let! msg = mailbox.Receive()
match msg with
| Foo ->
let! x = async.Return "testing 123" // Some async function, return just an example
() // Do something with result
}
Run Code Online (Sandbox Code Playgroud)