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
With Rxjava2, we could call the overloaded flatmap with delayErrors parameter: flatmap javadoc
When passing it as true:
exceptions from the current Flowable and all inner Publishers are delayed until all of them terminate if false, the first one signaling an exception will terminate the whole sequence immediately