reactor.rx.action.aggregation.WindowAction Maven / Gradle / Ivy
/*
* Copyright (c) 2011-2014 Pivotal Software, 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 reactor.rx.action.aggregation;
import reactor.Environment;
import reactor.core.Dispatcher;
import reactor.core.dispatch.SynchronousDispatcher;
import reactor.fn.timer.Timer;
import reactor.rx.Stream;
import reactor.rx.broadcast.Broadcaster;
import reactor.rx.broadcast.SerializedBroadcaster;
import reactor.rx.subscription.ReactiveSubscription;
import java.util.concurrent.TimeUnit;
/**
* WindowAction is forwarding events on a steam until {@param backlog} is reached,
* after that streams collected events further, complete it and create a fresh new stream.
*
* @author Stephane Maldini
* @since 2.0
*/
public class WindowAction extends BatchAction> {
private final Environment environment;
private ReactiveSubscription currentWindow;
public WindowAction(Environment environment, Dispatcher dispatcher, int backlog) {
super(dispatcher, backlog, true, true, true);
this.environment = environment;
}
public WindowAction(Environment environment, Dispatcher dispatcher, int backlog, long timespan, TimeUnit unit, Timer timer) {
super(dispatcher, backlog, true, true, true, timespan, unit, timer);
this.environment = environment;
}
public ReactiveSubscription currentWindow() {
return currentWindow;
}
protected Stream createWindowStream() {
Broadcaster action = timer != null && dispatcher == SynchronousDispatcher.INSTANCE ?
SerializedBroadcaster.create(environment, dispatcher) :
Broadcaster.create(environment, dispatcher);
ReactiveSubscription _currentWindow = new ReactiveSubscription(null, action);
currentWindow = _currentWindow;
action.onSubscribe(_currentWindow);
return action;
}
@Override
protected void doError(Throwable ev) {
if (currentWindow != null) {
currentWindow.onError(ev);
}
super.doError(ev);
}
@Override
protected void doComplete() {
if (currentWindow != null) {
currentWindow.onComplete();
currentWindow = null;
}
super.doComplete();
}
@Override
protected void firstCallback(T event) {
broadcastNext(createWindowStream());
}
@Override
protected void nextCallback(T event) {
if (currentWindow != null) {
currentWindow.onNext(event);
}
}
@Override
protected void flushCallback(T event) {
if (currentWindow != null) {
currentWindow.onComplete();
currentWindow = null;
}
}
@Override
public final Environment getEnvironment() {
return environment;
}
}