Re: [whatwg/streams] What is the expected behaviour of .pipeThrough()? (#765)

No. pull() will always be called as long as the current size of the queue is less than the high water mark. You can set the high water mark to zero if you really want to avoid pull() calls, but that's not recommended. It's better to just write a well-behaved pull() that can be called any time. Trying to control when it's called is not a good idea here.

-- 
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/issues/765#issuecomment-323542284

Received on Saturday, 19 August 2017 19:14:30 UTC