Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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.*;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
import io.reactivex.common.*;
import io.reactivex.common.Scheduler.Worker;
import io.reactivex.common.internal.disposables.DisposableHelper;
import io.reactivex.observable.Observable;
import io.reactivex.observable.ObservableSource;
import io.reactivex.observable.Observer;
import io.reactivex.observable.internal.observers.QueueDrainObserver;
import io.reactivex.observable.internal.queues.MpscLinkedQueue;
import io.reactivex.observable.internal.utils.NotificationLite;
import io.reactivex.observable.observers.SerializedObserver;
import io.reactivex.observable.subjects.UnicastSubject;
public final class ObservableWindowTimed extends AbstractObservableWithUpstream> {
final long timespan;
final long timeskip;
final TimeUnit unit;
final Scheduler scheduler;
final long maxSize;
final int bufferSize;
final boolean restartTimerOnMaxSize;
public ObservableWindowTimed(
ObservableSource source,
long timespan, long timeskip, TimeUnit unit, Scheduler scheduler, long maxSize,
int bufferSize, boolean restartTimerOnMaxSize) {
super(source);
this.timespan = timespan;
this.timeskip = timeskip;
this.unit = unit;
this.scheduler = scheduler;
this.maxSize = maxSize;
this.bufferSize = bufferSize;
this.restartTimerOnMaxSize = restartTimerOnMaxSize;
}
@Override
public void subscribeActual(Observer super Observable> t) {
SerializedObserver> actual = new SerializedObserver>(t);
if (timespan == timeskip) {
if (maxSize == Long.MAX_VALUE) {
source.subscribe(new WindowExactUnboundedObserver(
actual,
timespan, unit, scheduler, bufferSize));
return;
}
source.subscribe(new WindowExactBoundedObserver(
actual,
timespan, unit, scheduler,
bufferSize, maxSize, restartTimerOnMaxSize));
return;
}
source.subscribe(new WindowSkipObserver(actual,
timespan, timeskip, unit, scheduler.createWorker(), bufferSize));
}
static final class WindowExactUnboundedObserver
extends QueueDrainObserver>
implements Observer, Disposable, Runnable {
final long timespan;
final TimeUnit unit;
final Scheduler scheduler;
final int bufferSize;
Disposable s;
UnicastSubject window;
final AtomicReference timer = new AtomicReference();
static final Object NEXT = new Object();
volatile boolean terminated;
WindowExactUnboundedObserver(Observer super Observable> actual, long timespan, TimeUnit unit,
Scheduler scheduler, int bufferSize) {
super(actual, new MpscLinkedQueue