Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.05 KB

kafka-streams-KeyValueMapper.adoc

File metadata and controls

37 lines (28 loc) · 1.05 KB

KeyValueMapper

KeyValueMapper is the contract of key-value mappers that map a record to a new value.

KeyValueMapper is the input argument of the following operators:

package org.apache.kafka.streams.kstream;

interface KeyValueMapper<K, V, VR> {
  VR apply(final K key, final V value);
}
Table 1. KeyValueMapper Contract
Method Description

apply

Used when…​FIXME