rx.operators.OperationInterval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-core Show documentation
Show all versions of rxjava-core Show documentation
rxjava-core developed by Netflix
/**
* Copyright 2014 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 rx.operators;
import java.util.concurrent.TimeUnit;
import rx.Observable.OnSubscribeFunc;
import rx.Observer;
import rx.Scheduler;
import rx.Scheduler.Inner;
import rx.Subscription;
import rx.functions.Action0;
import rx.functions.Action1;
import rx.schedulers.Schedulers;
import rx.subscriptions.Subscriptions;
/**
* Returns an observable sequence that produces a value after each period.
* The value starts at 0 and counts up each period.
*/
public final class OperationInterval {
/**
* Creates an event each time interval.
*/
public static OnSubscribeFunc interval(long interval, TimeUnit unit) {
return interval(interval, unit, Schedulers.computation());
}
/**
* Creates an event each time interval.
*/
public static OnSubscribeFunc interval(final long interval, final TimeUnit unit, final Scheduler scheduler) {
// wrapped in order to work with multiple subscribers
return new OnSubscribeFunc() {
@Override
public Subscription onSubscribe(Observer super Long> observer) {
return new Interval(interval, unit, scheduler).onSubscribe(observer);
}
};
}
private static class Interval implements OnSubscribeFunc {
private final long period;
private final TimeUnit unit;
private final Scheduler scheduler;
private long currentValue;
private Interval(long period, TimeUnit unit, Scheduler scheduler) {
this.period = period;
this.unit = unit;
this.scheduler = scheduler;
}
@Override
public Subscription onSubscribe(final Observer super Long> observer) {
final Subscription wrapped = scheduler.schedulePeriodically(new Action1() {
@Override
public void call(Inner inner) {
observer.onNext(currentValue);
currentValue++;
}
}, period, period, unit);
return Subscriptions.create(new Action0() {
@Override
public void call() {
wrapped.unsubscribe();
}
});
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy