BackpressureStreamTransformer<S, T> constructor
BackpressureStreamTransformer<S, T> (})
Constructs a StreamTransformer which buffers events emitted by the
Stream that is created by windowStreamFactory
.
Use the various optional parameters to precisely determine how and when this buffer should be created.
For more info on the parameters, see BackpressureStreamTransformer, or see the various back pressure StreamTransformers for examples.
Implementation
BackpressureStreamTransformer(
this.strategy,
this.windowStreamFactory, {
this.onWindowStart,
this.onWindowEnd,
this.startBufferEvery = 0,
this.closeWindowWhen,
this.ignoreEmptyWindows = true,
this.dispatchOnClose = true,
this.maxLengthQueue,
});