io.reactivx.mantis.operators.OperatorOnErrorResumeNextViaObservable Maven / Gradle / Ivy
/*
* Copyright 2019 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.reactivx.mantis.operators;
import rx.Observable;
import rx.Observable.Operator;
import rx.Producer;
import rx.Subscriber;
import rx.exceptions.Exceptions;
import rx.plugins.RxJavaPlugins;
/**
* Instruct an Observable to pass control to another Observable rather than invoking
* onError
if it encounters an error.
*
*
*
* By default, when an Observable encounters an error that prevents it from emitting the expected item to its
* Observer, the Observable invokes its Observer's {@code onError} method, and then quits without invoking any
* more of its Observer's methods. The {@code onErrorResumeNext} operation changes this behavior. If you pass
* an Observable ({@code resumeSequence}) to {@code onErrorResumeNext}, if the source Observable encounters an
* error, instead of invoking its Observer's {@code onError} method, it will instead relinquish control to this
* new Observable, which will invoke the Observer's {@code onNext} method if it is able to do so. In such a
* case, because no Observable necessarily invokes {@code onError}, the Observer may never know that an error
* happened.
*
* You can use this to prevent errors from propagating or to supply fallback data should errors be
* encountered.
* @deprecated use the built in RxJava onErrorResumeNext operator instead
* @param the value type
*/
@Deprecated
public final class OperatorOnErrorResumeNextViaObservable implements Operator {
final Observable extends T> resumeSequence;
public OperatorOnErrorResumeNextViaObservable(Observable extends T> resumeSequence) {
this.resumeSequence = resumeSequence;
}
@Override
public Subscriber super T> call(final Subscriber super T> child) {
// shared subscription won't work here
Subscriber s = new Subscriber() {
private boolean done = false;
@Override
public void onNext(T t) {
if (done) {
return;
}
child.onNext(t);
}
@Override
public void onError(Throwable e) {
if (done) {
Exceptions.throwIfFatal(e);
return;
}
done = true;
RxJavaPlugins.getInstance().getErrorHandler().handleError(e);
unsubscribe();
resumeSequence.unsafeSubscribe(child);
}
@Override
public void onCompleted() {
if (done) {
return;
}
done = true;
child.onCompleted();
}
@Override
public void setProducer(final Producer producer) {
child.setProducer(new Producer() {
@Override
public void request(long n) {
producer.request(n);
}
});
}
};
child.add(s);
return s;
}
}