Package org.apache.kafka.streams.kstream
Interface ValueMapper<V,VR>
-
- Type Parameters:
V- value typeVR- mapped value type
public interface ValueMapper<V,VR>TheValueMapperinterface for mapping a value to a new value of arbitrary type. This is a stateless record-by-record operation, i.e,apply(Object)is invoked individually for each record of a stream (cf.ValueTransformerfor stateful value transformation). IfValueMapperis applied to akey-value pairrecord the record's key is preserved. If a record's key and value should be modifiedKeyValueMappercan be used.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VRapply(V value)Map the given value to a new value.
-