Package org.redisson.api.mapreduce
Interface RCollector<K,V>
-
- Type Parameters:
K- key typeV- value type
- All Known Implementing Classes:
Collector
public interface RCollector<K,V>Stores each key/value mapping during map phase of MapReduce process. Later used in reduce phase.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidemit(K key, V value)Store key/value
-