Documentation
    Preparing search index...

    Type Alias IteratorOptions

    Options for configuring the behavior of an iterator.

    type IteratorOptions = {
        iteratorDelay?: number;
        timeoutMs?: number;
    }
    Index

    Properties

    iteratorDelay?: number

    Optional delay in milliseconds between each iteration. Can be used to control the rate of iteration.

    timeoutMs?: number

    Optional timeout in milliseconds. If specified, the iterator will terminate after this time period.