Are Coroutines JVM specific ?
# coroutines
r
Are Coroutines JVM specific ?
đźš« 8
g
No, but coroutines out of the box are very low level and doesn’t have any threading or cancellation facilities. The main high level library is kotlinx.coroutines and it’s also multiplatform but doesn’t provide exactly the same set of features on each platform. For example js doesn’t have runBlocking and any threading, native doesn’t have multithreading support (but this feature under development)
r
Thank you 🙂