
reactor.rx.stream.PeriodicTimerStream Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2015 Pivotal Software Inc., Inc. All Rights Reserved.
*
* 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 reactor.rx.stream;
import org.reactivestreams.Subscriber;
import reactor.core.support.Exceptions;
import reactor.fn.Consumer;
import reactor.fn.Pausable;
import reactor.fn.timer.Timer;
import reactor.rx.Stream;
import reactor.rx.subscription.PushSubscription;
import java.util.concurrent.TimeUnit;
/**
* A Stream that emits {@link 0} after an initial delay and ever incrementing long counter if the period argument is
* specified.
*
* The TimerStream will manage dedicated timers for new subscriber assigned via
* {@link this#subscribe(org.reactivestreams.Subscriber)}.
*
* Create such stream with the provided factory, E.g with a delay of 1 second, then every 2 seconds.:
*
* {@code
* Streams.timer(1, 2).consume(
* log::info,
* log::error,
* (-> log.info("complete"))
* )
* }
*
*
* Will log:
*
{@code
* 0
* complete
* }
*
*
* @author Stephane Maldini
*/
public final class PeriodicTimerStream extends Stream {
final private long delay;
final private long period;
final private TimeUnit unit;
final private Timer timer;
public PeriodicTimerStream(long delay, long period, TimeUnit unit, Timer timer) {
this.delay = delay >= 0l ? delay : -1l;
this.unit = unit != null ? unit : TimeUnit.SECONDS;
this.period = period;
this.timer = timer;
}
@Override
public void subscribe(final Subscriber super Long> subscriber) {
try {
subscriber.onSubscribe(new TimerSubscription(this, subscriber));
} catch (Throwable throwable) {
Exceptions.throwIfFatal(throwable);
subscriber.onError(throwable);
}
}
private class TimerSubscription extends PushSubscription {
long counter = 0l;
final Pausable registration = timer.schedule(new Consumer() {
@Override
public void accept(Long aLong) {
subscriber.onNext(counter++);
}
}, period, unit, delay == -1 ? TimeUnit.MILLISECONDS.convert(period, unit) : delay);
public TimerSubscription(Stream publisher, Subscriber super Long> subscriber) {
super(publisher, subscriber);
}
@Override
public void cancel() {
registration.cancel();
super.cancel();
}
}
@Override
public String toString() {
return "delay=" + delay + "ms" + (period > 0 ? ", period=" + period : "") + ", period-unit=" + unit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy