@cercalia/sdk
    Preparing search index...

    Interface RetryOptions

    Configuration options for retry behavior.

    interface RetryOptions {
        delayMs?: number;
        logRetries?: boolean;
        maxAttempts?: number;
        operationName?: string;
    }
    Index

    Properties

    delayMs?: number

    Delay between retries in milliseconds (default: 500).

    logRetries?: boolean

    Whether to log retry attempts (default: true).

    maxAttempts?: number

    Maximum number of retry attempts (default: 3).

    operationName?: string

    Operation name for logging purposes.