Class AggInputFlatMap<I,E,J,O,SUBACC extends Accumulator<J,E,O>,SUBAGG extends ParallelAggregator<J,E,O,SUBACC>>

java.lang.Object
org.aksw.commons.collector.core.AggInputFlatMap<I,E,J,O,SUBACC,SUBAGG>
All Implemented Interfaces:
Serializable, Aggregator<I,E,O>, ParallelAggregator<I,E,O,AggInputFlatMap.AccInputFlatMap<I,E,J,O,SUBACC>>

public class AggInputFlatMap<I,E,J,O,SUBACC extends Accumulator<J,E,O>,SUBAGG extends ParallelAggregator<J,E,O,SUBACC>> extends Object implements ParallelAggregator<I,E,O,AggInputFlatMap.AccInputFlatMap<I,E,J,O,SUBACC>>, Serializable
Pass collection valued input to an accumulator that accepts only the individual items For example, pass all nodes of a binding to an accumulator for nodes This operation is a variant of input transform, where the transform target is an iterator. Each item of the iterator then passed to the accumulator.
See Also: