Pacote
    Preparing search index...

    Type Alias RetryOptions

    type RetryOptions = {
        backoff?: number;
        interval?: number;
        retries?: number;
        timeout?: number;
    }
    Index

    Properties

    backoff?: number

    Exponential backoff applied to the interval.

    interval?: number

    Time in milliseconds between retry attempts. If a backoff is provided, the interval between attempts will increase exponentially based on it.

    retries?: number

    Maximum number of times the invocation is retried.

    timeout?: number

    Time in milliseconds after which the function will stop being retried.