Created
September 14, 2017 12:52
-
-
Save aballano/319ed3ce9cbc79af5bb2fb3330290f30 to your computer and use it in GitHub Desktop.
This file contains 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
Completable.complete() | |
.subscribe( | |
Action { throw exception }, | |
Consumer { /* wont be called */ } | |
) | |
Observable.just(str) | |
.subscribe( | |
Consumer { throw exception }, | |
Consumer { /* will be called */ } | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment