Do you often use something like following to execu...
# android
s
Do you often use something like following to execute your code concurrently instead of synchronously? I see a lot of tasks during clean up don't need to happen synchronously.
Copy code
viewModelScope.launch {
    launch { task1 }
    launch { task2 }
}
g
We do use it if we need parallel execution of tasks
s
Thanks