Last active
August 29, 2015 14:24
-
-
Save pardom-zz/5969bfc4c59b63344f2a to your computer and use it in GitHub Desktop.
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
remote.getIt(foo) // Observable<Bar> | |
//.doOnNext { local.saveIt(bar).toBlocking().single() } // "Interrupted while waiting for subscription to complete" on errors. | |
.flatMap { bar -> local.saveIt(bar).map { bar } } // Hacky, but makes saving part of stream and won't throw exceptions due to blocking observable. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment