Skip to content

Instantly share code, notes, and snippets.

@ValCanBuild
Created February 20, 2017 20:49
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 ValCanBuild/4786b2b6ea93eaee9c896dde9813f542 to your computer and use it in GitHub Desktop.
Save ValCanBuild/4786b2b6ea93eaee9c896dde9813f542 to your computer and use it in GitHub Desktop.
TypicalUseCase
view.showLoadingIndicator();
loadFromServer()
.compose(applySchedulers())
.subscribe(data -> {
view.hideLoadingIndicator();
view.showData();
}, throwable -> {
view.hideLoadingIndicator();
view.showError();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment