Package org.redisson.api.mapreduce
Interface RCollator<K,V,R>
-
- Type Parameters:
K
- key typeV
- value typeR
- result type
- All Superinterfaces:
Serializable
public interface RCollator<K,V,R> extends Serializable
Collates result fromRReducer
tasks and produces a single result object. Executes only once.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
collate(Map<K,V> resultMap)
Collates result map from reduce phase of MapReduce process.
-