GroupedStream<T, K> constructor
GroupedStream<T, K> (
- K key,
- Stream<
T> stream
Constructs a Stream which only emits events that can be
categorized under key
.
Implementation
GroupedStream(this.key, Stream<T> stream) : super(stream);