Created
June 11, 2020 09:08
-
-
Save MathiasSeguy-Android2EE/b2ed22bc1c6ccfa11ff56a4ba84a0f35 to your computer and use it in GitHub Desktop.
Markdium-Chapter 9: Observable's action operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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