I would like to know how to ignore exceptions and continue infinite stream (in my case stream of locations)?
I\'m fetching current user position (using Android-React
If you just want to ignore the error inside the flatMap without returning an element do this:
flatMap
flatMap(item -> restService.getSomething(item).onErrorResumeNext(Observable.empty()) );