io.datakernel.stream.processor.StreamReducerSimple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-streams Show documentation
Show all versions of async-streams Show documentation
Composable asynchronous/reactive streams with powerful data processing capabilities.
The newest version!
/*
* Copyright (C) 2015 SoftIndex LLC.
*
* 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.datakernel.stream.processor;
import com.google.common.base.Function;
import io.datakernel.eventloop.Eventloop;
import io.datakernel.stream.StreamConsumer;
import java.util.Comparator;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Perform a reduction on the elements of input streams using the key function.
* It is {@link AbstractStreamReducer}.
*
* @param type of key for mapping
* @param type of output data
* @param type of accumulator
* @param type of input data
*/
public final class StreamReducerSimple extends AbstractStreamReducer {
private final Function keyFunction;
private final StreamReducers.Reducer reducer;
/**
* Creates a new instance of StreamReducerSimple
*
* @param eventloop eventloop in which runs reducer
* @param keyComparator comparator for compare keys
* @param keyFunction function for counting key
*/
public StreamReducerSimple(Eventloop eventloop, Function keyFunction, Comparator keyComparator, StreamReducers.Reducer reducer) {
super(eventloop, keyComparator);
this.reducer = checkNotNull(reducer);
this.keyFunction = checkNotNull(keyFunction);
}
/**
* Returns new input for this stream
*/
public StreamConsumer newInput() {
return super.newInput(keyFunction, reducer);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy