Closed
Description
The window
operators that use time or Observable boundaries do not participate in backpressure ... they act as "temporal" operators for flow control and not reactive pull. The window(int size)
variant however seems like it should work with reactive pull backpressure and behave similarly to groupBy
.
In other words, it can be applied to a cold observable and correctly compose backpressure to emit windows and items within each window at a controlled rate.
Any thoughts or opinions on this?