Skip to content

Instantly share code, notes, and snippets.

@MathiasSeguy-Android2EE
Created June 11, 2020 09:08
Show Gist options
  • Save MathiasSeguy-Android2EE/289a258c9a2d1d1cd4481370121f4c7b to your computer and use it in GitHub Desktop.
Save MathiasSeguy-Android2EE/289a258c9a2d1d1cd4481370121f4c7b to your computer and use it in GitHub Desktop.
Markdium-Chapter 9: Observable's action operators
* OutPut result:
* value emitted is Monday
* onCompleteCalled
*/
@Test
public void testObservableWithOnErrorResumeNextEmpty() {
Answer9_ObservableActions.getObservableWithOnErrorResumeNextEmpty()
.subscribe(it -> System.out.println("value emitted is " + it),
Throwable::printStackTrace,
() -> System.out.println("onCompleteCalled"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment