themeparks - v7.0.0
    Preparing search index...

    Interface RetryConfig

    Retry configuration for the Transport.

    Semantics note: max is the number of retries beyond the initial attempt, not the total attempt count. A setting of max: 3 means the transport will make up to 4 total calls (1 initial + 3 retries) before giving up. A setting of max: 0 disables retries entirely and the transport will perform exactly one call.

    interface RetryConfig {
        max: number;
        on429: boolean;
    }
    Index

    Properties

    Properties

    max: number

    Maximum number of retries beyond the initial attempt.

    0 disables retries; 3 allows 1 initial + 3 retries = 4 total calls.

    on429: boolean

    If true, HTTP 429 responses are retried (honouring Retry-After).