io.reactivex.observable.internal.operators.MaybeTimeoutObservable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava3-observable Show documentation
Show all versions of rxjava3-observable Show documentation
rxjava3-observable developed by David Karnok
The newest version!
/**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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.reactivex.observable.internal.operators;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicReference;
import io.reactivex.common.*;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.observable.*;
/**
* Switches to the fallback Maybe if the other Observable signals a success or completes, or
* signals TimeoutException if fallback is null.
*
* @param the main value type
* @param the other value type
*/
public final class MaybeTimeoutObservable extends AbstractMaybeWithUpstream {
final ObservableSource other;
final MaybeSource extends T> fallback;
public MaybeTimeoutObservable(MaybeSource source, ObservableSource other, MaybeSource extends T> fallback) {
super(source);
this.other = other;
this.fallback = fallback;
}
@Override
protected void subscribeActual(MaybeObserver super T> observer) {
TimeoutMainMaybeObserver parent = new TimeoutMainMaybeObserver(observer, fallback);
observer.onSubscribe(parent);
other.subscribe(parent.other);
source.subscribe(parent);
}
static final class TimeoutMainMaybeObserver
extends AtomicReference
implements MaybeObserver, Disposable {
private static final long serialVersionUID = -5955289211445418871L;
final MaybeObserver super T> actual;
final TimeoutOtherMaybeObserver other;
final MaybeSource extends T> fallback;
final TimeoutFallbackMaybeObserver otherObserver;
TimeoutMainMaybeObserver(MaybeObserver super T> actual, MaybeSource extends T> fallback) {
this.actual = actual;
this.other = new TimeoutOtherMaybeObserver(this);
this.fallback = fallback;
this.otherObserver = fallback != null ? new TimeoutFallbackMaybeObserver(actual) : null;
}
@Override
public void dispose() {
DisposableHelper.dispose(this);
DisposableHelper.dispose(other);
TimeoutFallbackMaybeObserver oo = otherObserver;
if (oo != null) {
DisposableHelper.dispose(oo);
}
}
@Override
public boolean isDisposed() {
return DisposableHelper.isDisposed(get());
}
@Override
public void onSubscribe(Disposable d) {
DisposableHelper.setOnce(this, d);
}
@Override
public void onSuccess(T value) {
DisposableHelper.dispose(other);
if (getAndSet(DisposableHelper.DISPOSED) != DisposableHelper.DISPOSED) {
actual.onSuccess(value);
}
}
@Override
public void onError(Throwable e) {
DisposableHelper.dispose(other);
if (getAndSet(DisposableHelper.DISPOSED) != DisposableHelper.DISPOSED) {
actual.onError(e);
} else {
RxJavaCommonPlugins.onError(e);
}
}
@Override
public void onComplete() {
DisposableHelper.dispose(other);
if (getAndSet(DisposableHelper.DISPOSED) != DisposableHelper.DISPOSED) {
actual.onComplete();
}
}
public void otherError(Throwable e) {
if (DisposableHelper.dispose(this)) {
actual.onError(e);
} else {
RxJavaCommonPlugins.onError(e);
}
}
public void otherComplete() {
if (DisposableHelper.dispose(this)) {
if (fallback == null) {
actual.onError(new TimeoutException());
} else {
fallback.subscribe(otherObserver);
}
}
}
}
static final class TimeoutOtherMaybeObserver
extends AtomicReference
implements Observer