Another Saturday, Another article! 🚀
#Kotlin
#KotlinCoroutines
#StructuredConcurrency
#coroutineScope
https://medium.com/@kinya/structrured-concurrency-coroutinescope-adc470d47e4b
Another Saturday, Another article! 🚀
#Kotlin
#KotlinCoroutines
#StructuredConcurrency
#coroutineScope
https://medium.com/@kinya/structrured-concurrency-coroutinescope-adc470d47e4b
Part 3 of Kotlin Coroutine Mechanisms: Swapping CoroutineContext comes out Monday. Keep an eye out!
I wrote an article about Coroutines that I am proud of. The feedback I received was unexpectedly good. 🚀
You can read my article here:
https://medium.com/proandroiddev/design-of-kotlin-coroutines-879bd35e0f34
#Kotlin new version 2.0.0-RC3 and #Kotlin #Coroutines version 1.8.1 have been released, check what's new 👇 🆕
#AndroidDev #Android #KotlinCoroutines
https://github.com/JetBrains/kotlin/releases/tag/v2.0.0-RC3
https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.1
How does rememberCoroutineScope manage the context of the coroutines it launches?
- rememberCoroutineScope uses the context of the Composable function in which it is used as the context for the coroutines it launches. This means that the context of the coroutines will be the same as the context of the Composable function!