Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JoseAlcerreca/8904abfba8407c60253064110bdb0a45 to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/8904abfba8407c60253064110bdb0a45 to your computer and use it in GitHub Desktop.
class MyViewModel(authManager..., repository...) : ViewModel() {
private val userId: LiveData<String?> =
authManager.observeUser().map { user -> user.id }.asLiveData()
val result = userId.switchMap { newUserId ->
repository.observeItem(newUserId).asLiveData()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment