Interface WriteableStreamOptions

interface WriteableStreamOptions {
    highWaterMark?: number;
}

Properties

Properties

highWaterMark?: number

The number of objects to buffer before WriteableStream#write() signals back that the buffer is full. Can be used to reduce the memory pressure when the stream is not flowing.