Interface MapReduce.MapEmitter<K,V>
- 
- Type Parameters:
- K- the key type
- V- the value type
 - All Known Implementing Classes:
- TinkerMapEmitter
 
 public static interface MapReduce.MapEmitter<K,V>The MapEmitter is used to emit key/value pairs from the map() stage of the MapReduce job. The implementation of MapEmitter is up to the vendor, not the developer.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidemit(K key, V value)default voidemit(V value)A default method that assumes the key isMapReduce.NullObject.
 
- 
- 
- 
Method Detail- 
emitdefault void emit(V value) A default method that assumes the key isMapReduce.NullObject.- Parameters:
- value- the value to emit.
 
 
- 
 
-