Skip to content

Instantly share code, notes, and snippets.

@akshaybhange
Created July 23, 2019 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akshaybhange/ead54823ef9f786f1ac35035fb73b657 to your computer and use it in GitHub Desktop.
Save akshaybhange/ead54823ef9f786f1ac35035fb73b657 to your computer and use it in GitHub Desktop.
var productData = MediatorLiveData<Resource<Product>>()
init {
fetchData()
}
fun fetchData() {
productData.addSource(productRepository.getproduct(id)) {
productData.value = it
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment