Skip to content

Instantly share code, notes, and snippets.

@MathiasSeguy-Android2EE
Created June 11, 2020 09:08
Show Gist options
  • Select an option

  • Save MathiasSeguy-Android2EE/b2ed22bc1c6ccfa11ff56a4ba84a0f35 to your computer and use it in GitHub Desktop.

Select an option

Save MathiasSeguy-Android2EE/b2ed22bc1c6ccfa11ff56a4ba84a0f35 to your computer and use it in GitHub Desktop.
Markdium-Chapter 9: Observable's action operators
private static final Observable observableWithErrorSrc =Observable.create(
emiter -> {
emiter.onNext("Monday");
emiter.onNext(null);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment