interface pipe.ChannelPipeOptions
implements ChannelOptions
Re-export
import { type pipe } from "https://deno.land/x/async_channels@v1.0.0-rc8/src/mod.ts";
const { ChannelPipeOptions } = pipe;
Options for pipe operations.
Properties
A safe integer representing the channel buffer size.
A bufferSize
of 0
indicates a channel without any buffer.
A negative bufferSize
indicates a channel with an endless buffer.
optional
signal: AbortSignalIf provided, the pipe operation will halt when the signal is triggered.