On this page
CountQueuingStrategy
This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
interface CountQueuingStrategy extends QueuingStrategy {
highWaterMark: number;
size(chunk: any): 1;
}
var CountQueuingStrategy: {
prototype: CountQueuingStrategy;
new (options: {
highWaterMark: number;
}): CountQueuingStrategy;
};
© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/CountQueuingStrategy