Navigating Kotlin's "suspend" and "runBlocking": A Cautionary Tale.
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...
aahlad-kethineedi.hashnode.dev2 min read