You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2018. It is now read-only.
This issue is moved from: Reactive-Extensions/RxJS#508
http://nodejs.org/api/stream.html#stream_readable_pause
I tried to request only two items from a Readable Node stream with
Rxand I observed the following behaviour:Rx subscribenext emits only the expected two itemsRx Observablereads every item from the stream, doesn't pause the stream after twoRx
or
I think Rx should support some backpressure here and pause the Readable stream. Would be great for
takealso.In Highland it works in the following way:
Did I miss something?