https://kotlinlang.org logo
e

Emre

08/04/2023, 9:33 PM
What is the best practice around organizing async code in kotlin? Should I create a
suspend
function or should I incorporate the coroutine scope into the function and eliminate the
suspend
? If the caller itself is a
suspend
I’d go with the former but I’m not decided if it is not. edit: Answered in #coroutines