I have a Flowable<T>
and errors that are subtype of IgnoreThisError
I want to ignore (resulting in graceful completion), all other errors should be propagated downstream.
Kotlin example:
val f : Flowable<T> = ...
val g = f.onErrorComplete { it is IgnoreThisError }
This function onErrorComplete is what I need and does not exist...