Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created May 11, 2021 11:59
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save JoseAlcerreca/4eb0be817d8f94880dab279d1c27a4af to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/4eb0be817d8f94880dab279d1c27a4af to your computer and use it in GitHub Desktop.
class MyViewModel(...) : ViewModel() {
val result = userId.mapLatest { newUserId ->
repository.observeItem(newUserId)
}.stateIn(
scope = viewModelScope,
started = WhileSubscribed(5000),
initialValue = Result.Loading
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment