Note: This feature is available in Web Workers.
The size() method of the ByteLengthQueuingStrategy interface returns the given chunk's byteLength property.
size(chunk)chunkA chunk of data being passed through the stream.
An integer representing the byte length of the given chunk.
const queuingStrategy = new ByteLengthQueuingStrategy({ highWaterMark: 1 });
const readableStream = new ReadableStream(
{
start(controller) {
// …
},
pull(controller) {
// …
},
cancel(err) {
console.log("stream error:", err);
},
},
queuingStrategy,
);
const size = queuingStrategy.size(chunk);ByteLengthQueuingStrategy() constructor