Skip to content

Instantly share code, notes, and snippets.

@aballano
Created September 14, 2017 12:52
Show Gist options
  • Save aballano/319ed3ce9cbc79af5bb2fb3330290f30 to your computer and use it in GitHub Desktop.
Save aballano/319ed3ce9cbc79af5bb2fb3330290f30 to your computer and use it in GitHub Desktop.
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