Package org.apache.kafka.streams.kstream
Class Windowed<K>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.Windowed<K>
-
- Type Parameters:
K- type of the key
public class Windowed<K> extends Object
The result key type of a windowed stream aggregation.If a
KStreamgets grouped and aggregated using a window-aggregation the resultingKTableis a so-called "windowedKTable" with a combined key type that encodes the corresponding aggregation window and the original record key. Thus, a windowedKTablehas type<Windowed<K>,V>.