THEOplayer Web SDK
    Preparing search index...

    Interface RetryConfiguration

    Object containing values used for the player's retry mechanisms.

    interface RetryConfiguration {
        maximumBackoff?: number;
        maxRetries?: number;
        minimumBackoff?: number;
    }
    Index

    Properties

    maximumBackoff?: number

    The maximum amount of delay in milliseconds between retry requests. Defaults to 30000.

    maxRetries?: number

    The maximum amount of retries before the player throws a fatal error. Defaults to Infinity.

    minimumBackoff?: number

    The initial delay in milliseconds before a retry request occurs. Exponential backoff will be applied on this value. Defaults to 200, however the default value is 1000 for Millicast sources. 1000 is the minimum allowed value for Millicast sources.