@nextcloud/files
    Preparing search index...

    Interface ReadableOperatorOptions

    interface ReadableOperatorOptions {
        concurrency?: number;
        highWaterMark?: number;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index

    Properties

    concurrency?: number

    The maximum concurrent invocations of fn to call on the stream at once.

    1
    
    highWaterMark?: number

    How many items to buffer while waiting for user consumption of the output.

    concurrency * 2 - 1
    
    signal?: AbortSignal