@haxall/haxall
    Preparing search index...

    Interface CreateReadStreamOptions

    interface CreateReadStreamOptions {
        autoClose?: boolean;
        emitClose?: boolean;
        encoding?: BufferEncoding;
        end?: number;
        highWaterMark?: number;
        signal?: AbortSignal;
        start?: number;
    }

    Hierarchy

    • Abortable
      • CreateReadStreamOptions
    Index

    Properties

    autoClose?: boolean
    emitClose?: boolean
    encoding?: BufferEncoding
    end?: number
    highWaterMark?: number
    signal?: AbortSignal

    When provided the corresponding AbortController can be used to cancel an asynchronous action.

    start?: number