augment-vir - v31.51.1
    Preparing search index...

    Type Alias RetryCallbackParams

    Params for the callback passed to retry.

    type RetryCallbackParams = {
        isFirstExecution: boolean;
        isFirstRetry: boolean;
        isLastRetry: boolean;
        retryCount: number;
    }
    Index

    Properties

    isFirstExecution: boolean

    Only true on the first execution, before any retries.

    isFirstRetry: boolean

    Only true on the first retry.

    isLastRetry: boolean

    Only true on the last retry.

    retryCount: number

    This will be 0 for the first execution, then increment with each retry.