Quick torrent of questions. 1. Can I use any disp...
# coroutines
a
Quick torrent of questions. 1. Can I use any dispatchers with native-mt? 2. does multithreading in coroutines still require to freeze objects before passing them to another coroutines with a switched contex?
b
1. Yes 2. Yes if that context is on another thread (remember, concurrency != parallelism)
a
That explains much. Thanks