Package org.redisson.api.mapreduce
Interface RReducer<K,V>
-
- Type Parameters:
K
- key typeV
- value type
- All Superinterfaces:
Serializable
public interface RReducer<K,V> extends Serializable
Reduces values mapped by key into single value.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
reduce(K reducedKey, Iterator<V> iter)
Invoked for each key
-