Navigating Kotlin's "suspend" and "runBlocking": A Cautionary Tale.
Feb 24, 2024 · 2 min read · Similar to threads in Java, Kotlin uses coroutines to run the tasks in the background. In Kotlin, you can use coroutines in few predefined methods like : runBlocking launch suspend coroutineScope async Based on each keyword the usage and imple...
Join discussion