Skip to content

Instantly share code, notes, and snippets.

@chenzhang2006
Last active February 18, 2022 16:01
Show Gist options
  • Select an option

  • Save chenzhang2006/2116ae84674549c4e053385aab9491c5 to your computer and use it in GitHub Desktop.

Select an option

Save chenzhang2006/2116ae84674549c4e053385aab9491c5 to your computer and use it in GitHub Desktop.
Extension Property: viewModelScope
public val ViewModel.viewModelScope: CoroutineScope
get() {
...
return setTagIfAbsent(
JOB_KEY,
CloseableCoroutineScope(SupervisorJob() + Dispatchers.Main)
)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment