Package org.apache.kafka.streams.kstream
Interface Merger<K,V>
-
- Type Parameters:
K
- key typeV
- aggregate value type
public interface Merger<K,V>
The interface for merging aggregate values forSessionWindows
with the given key.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
apply(K aggKey, V aggOne, V aggTwo)
Compute a new aggregate from the key and two aggregates.
-