Created
October 21, 2017 13:52
-
-
Save igorwojda/8436701b35749c6ba36cf4f6dc301a93 to your computer and use it in GitHub Desktop.
Side effects - RxJava
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
Observable.just(1) | |
.doOnNext { log.info("Next item emited: $it") } | |
.doOnError { log.error($it) } | |
.doOnComplete { log.info("Emission complete") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment