Skip to content

Instantly share code, notes, and snippets.

@pardom-zz
Last active August 29, 2015 14:24
Show Gist options
  • Save pardom-zz/5969bfc4c59b63344f2a to your computer and use it in GitHub Desktop.
Save pardom-zz/5969bfc4c59b63344f2a to your computer and use it in GitHub Desktop.
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