Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/src/deps/streams.ts>ReadableStreamFromReaderOptions

A better way to work with processes in Deno.
Very Popular
Go to Latest
interface ReadableStreamFromReaderOptions
Deprecated
Deprecated

(will be removed after 1.0.0) Use ReadableStream directly.

import { type ReadableStreamFromReaderOptions } from "https://deno.land/x/proc@0.20.43/src/deps/streams.ts";

Properties

optional
autoClose: boolean = true

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

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.