Re: [whatwg/streams] The implementation of ByteLengthQueuingStrategy does not behave as expect (#551)

No, `highWaterMark` is the (target) maximum amount that a ReadableStream wants to buffer, not a minimum. If nothing reads from the ReadableStream, and if the underlyingSource respects backpressure (by refusing to enqueue new chunks when `controller.desiredSize <= 0`), the internal queue will stay at or below the HWM.

-- 
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/551#issuecomment-255615150

Received on Sunday, 23 October 2016 21:20:50 UTC