- From: Takeshi Yoshino <notifications@github.com>
- Date: Fri, 28 Oct 2016 07:31:41 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Friday, 28 October 2016 14:32:13 UTC
tyoshino commented on this pull request.
>
- if (transformStream._readableBackpressure !== backpressure) {
- TransformStreamSetBackpressure(transformStream, backpressure);
+ if (maybeBackpressure === true && transformStream._backpressure === false) {
+ // This allows pull() again. When desiredSize is 0, it's possible that a pull() will happen immediately (but
+ // asynchronously) after this because of pending read()s and set _backpressure back to false.
+ //
+ // We don't have to worry about that such a pull() may happen inside the enqueue() call, and therefore is not
Thanks for the nice rewriting. Done
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/571
Received on Friday, 28 October 2016 14:32:13 UTC