Class AggFinish<B, I, E, O, C extends Aggregator<B,E,I>>

java.lang.Object
org.aksw.commons.collector.core.AggFinish<B,I,E,O,C>
All Implemented Interfaces:
Serializable, Aggregator<B,E,O>

public class AggFinish<B, I, E, O, C extends Aggregator<B,E,I>> extends Object implements Aggregator<B,E,O>, Serializable
Convert the output value of an aggregator - this fulfills the role of the 'finisher' in a java8 collector. Note the difference between outputTransform and finish: The former is a per-accumulator operation which can be performed concurrently, whereas finish is a post-processing of the overall result.
See Also: