Skip to content

Instantly share code, notes, and snippets.

@manuelvicnt
Created March 20, 2019 08:16
Show Gist options
  • Save manuelvicnt/4f65fc0a7094b6aa690b59c2afb0da6b to your computer and use it in GitHub Desktop.
Save manuelvicnt/4f65fc0a7094b6aa690b59c2afb0da6b to your computer and use it in GitHub Desktop.
class MyViewModel : ViewModel() {
/**
* Heavy operation that cannot be done in the Main Thread
*/
fun launchDataLoad() {
viewModelScope.launch {
sortList()
// Modify UI
}
}
suspend fun sortList() = withContext(Dispatchers.Default) {
// Heavy work
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment