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
KStream
gets grouped and aggregated using a window-aggregation the resultingKTable
is a so-called "windowedKTable
" with a combined key type that encodes the corresponding aggregation window and the original record key. Thus, a windowedKTable
has type<Windowed<K>,V>
.