Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/hex/src/generator/deps.ts>streams.ReadableStreamFromReaderOptions

An ecosystem delivering practices, philosophy and portability.
Go to Latest
interface streams.ReadableStreamFromReaderOptions
import { type streams } from "https://deno.land/x/hex@0.5.15/src/generator/deps.ts";
const { ReadableStreamFromReaderOptions } = streams;

Properties

optional
autoClose: boolean

If the reader is also a Deno.Closer, automatically close the reader when EOF is encountered, or a read error occurs.

Defaults to true.

optional
chunkSize: number

The size of chunks to allocate to read, the default is ~16KiB, which is the maximum size that Deno operations can currently support.

optional
strategy: { highWaterMark?: number | undefined; size?: undefined; }

The queuing strategy to create the ReadableStream with.