I’m reading Kotlin Coroutine and know that it is based on suspend function. But what does suspend mean? Coroutine or function gets suspended? From https://kotlinlang.org/docs/reference/coroutines.html Basically, coroutines are computations...
In the kotlinx.coroutines library you can start new coroutine using either launch (with join) or async (with await). What is the difference between them? 8 Answers 8