Always use threadpool threads to continue in async

Is there a way to instruct F # to always use threadpool threads to continue in async calculation expressions regardless of synchronization context?

+5
source share
1 answer

Of course you are using Async.SwitchToThreadPool or another Switch... method Switch...

like this:

 async { do! Async.SwitchToThreadPool () // ... your other stuff } 
+4
source

All Articles