KeyIn
- key type of the resulting keysValueIn
- value type of the incoming valuesValueOut
- value type of the reduced valuesAggregator
on IMap.
For general data processing, it is superseded by Hazelcast Jet.@Deprecated public interface CombinerFactory<KeyIn,ValueIn,ValueOut> extends Serializable
A CombinerFactory implementation is used to build Combiner
instances per key.
An implementation needs to be serializable by Hazelcast since it is distributed together with
the Mapper
implementation to run alongside.
Modifier and Type | Method and Description |
---|---|
Combiner<ValueIn,ValueOut> |
newCombiner(KeyIn key)
Deprecated.
Build a new
Combiner instance specific to the supplied key. |
Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.