GroupedStream<T, K> constructor

GroupedStream<T, K>(
  1. K key,
  2. 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);