始终使用线程池线程进行异步延续

Always use threadpool threads for continuations in async

有没有办法指示 F# 在异步计算表达式中始终使用线程池线程进行延续,而不管同步上下文如何?

确定使用 Async.SwitchToThreadPool 或其他 Switch... 方法

像这样:

async {

   do! Async.SwitchToThreadPool () 
   // ... your other stuff
}