Package-level declarations
Types
Link copied to clipboard
We throw OnNextFailedException to pass the exception back through the preceding Subscriber chain without triggering any SafeSubscriber.onErrors. Since we are extending an OnErrorNotImplementedException the exception will be re-thrown at Exceptions.throwOrReport.
Link copied to clipboard
OnResilientSubscribe returns an Observable holding a reference to the source Observable. Upon subscribing to it, when reaching call method, if the subscriber passed in isSafeSubscriber it will unwrap the Observer from the SafeSubscriber, re-wrap it with ResilientSubscriber and then subscribe it to the source Observable.
Link copied to clipboard
Extends SafeSubscriber to override SafeSubscriber.onNext, SafeSubscriber.onError and SafeSubscriber._onError.