BackPressure
Last updated
Last updated
Overrides the subscribers request and requests for unbounded data
It stores all the data in an internal queue
Drops the remaining elements that are not needed by the subscriber
This operator helps to track the items that are not needed by the subscriber
Overrides the subscribers request and requests for unbounded data
It stores all the data in an internal queue
Buffers the remaining elements that are not needed by the subscriber
The advantage is that the following requests after the initial request for data from the subscriber does not need to go all the way to the Publisher
Request an unbounded demand and push to the returned , or emit onError fom if not enough demand is requested downstream.