io.reactivex.rxjava3.internal.operators.observable.ObservableDebounceTimed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava Show documentation
Show all versions of rxjava Show documentation
Reactive Extensions for Java
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.rxjava3.internal.operators.observable;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.*;
import io.reactivex.rxjava3.core.*;
import io.reactivex.rxjava3.core.Scheduler.Worker;
import io.reactivex.rxjava3.disposables.Disposable;
import io.reactivex.rxjava3.exceptions.Exceptions;
import io.reactivex.rxjava3.functions.Consumer;
import io.reactivex.rxjava3.internal.disposables.DisposableHelper;
import io.reactivex.rxjava3.observers.SerializedObserver;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
public final class ObservableDebounceTimed extends AbstractObservableWithUpstream {
final long timeout;
final TimeUnit unit;
final Scheduler scheduler;
final Consumer super T> onDropped;
public ObservableDebounceTimed(ObservableSource source, long timeout, TimeUnit unit, Scheduler scheduler, Consumer super T> onDropped) {
super(source);
this.timeout = timeout;
this.unit = unit;
this.scheduler = scheduler;
this.onDropped = onDropped;
}
@Override
public void subscribeActual(Observer super T> t) {
source.subscribe(new DebounceTimedObserver<>(
new SerializedObserver<>(t), timeout, unit, scheduler.createWorker(), onDropped));
}
static final class DebounceTimedObserver
implements Observer, Disposable {
final Observer super T> downstream;
final long timeout;
final TimeUnit unit;
final Scheduler.Worker worker;
final Consumer super T> onDropped;
Disposable upstream;
DebounceEmitter timer;
volatile long index;
boolean done;
DebounceTimedObserver(Observer super T> actual, long timeout, TimeUnit unit, Worker worker, Consumer super T> onDropped) {
this.downstream = actual;
this.timeout = timeout;
this.unit = unit;
this.worker = worker;
this.onDropped = onDropped;
}
@Override
public void onSubscribe(Disposable d) {
if (DisposableHelper.validate(this.upstream, d)) {
this.upstream = d;
downstream.onSubscribe(this);
}
}
@Override
public void onNext(T t) {
if (done) {
return;
}
long idx = index + 1;
index = idx;
DebounceEmitter currentEmitter = timer;
if (currentEmitter != null) {
currentEmitter.dispose();
}
if (onDropped != null && currentEmitter != null) {
try {
onDropped.accept(timer.value);
} catch (Throwable ex) {
Exceptions.throwIfFatal(ex);
upstream.dispose();
downstream.onError(ex);
done = true;
}
}
DebounceEmitter newEmitter = new DebounceEmitter<>(t, idx, this);
timer = newEmitter;
newEmitter.setResource(worker.schedule(newEmitter, timeout, unit));
}
@Override
public void onError(Throwable t) {
if (done) {
RxJavaPlugins.onError(t);
return;
}
Disposable d = timer;
if (d != null) {
d.dispose();
}
done = true;
downstream.onError(t);
worker.dispose();
}
@Override
public void onComplete() {
if (done) {
return;
}
done = true;
DebounceEmitter d = timer;
if (d != null) {
d.dispose();
}
if (d != null) {
d.run();
}
downstream.onComplete();
worker.dispose();
}
@Override
public void dispose() {
upstream.dispose();
worker.dispose();
}
@Override
public boolean isDisposed() {
return worker.isDisposed();
}
void emit(long idx, T t, DebounceEmitter emitter) {
if (idx == index) {
downstream.onNext(t);
emitter.dispose();
}
}
}
static final class DebounceEmitter extends AtomicReference implements Runnable, Disposable {
private static final long serialVersionUID = 6812032969491025141L;
final T value;
final long idx;
final DebounceTimedObserver parent;
final AtomicBoolean once = new AtomicBoolean();
DebounceEmitter(T value, long idx, DebounceTimedObserver parent) {
this.value = value;
this.idx = idx;
this.parent = parent;
}
@Override
public void run() {
if (once.compareAndSet(false, true)) {
parent.emit(idx, value, this);
}
}
@Override
public void dispose() {
DisposableHelper.dispose(this);
}
@Override
public boolean isDisposed() {
return get() == DisposableHelper.DISPOSED;
}
public void setResource(Disposable d) {
DisposableHelper.replace(this, d);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy