@iterable/react-native-sdk - v2.2.0
    Preparing search index...

    Enumeration IterableRetryBackoff

    The type of backoff to use when retrying a request.

    Index

    Enumeration Members

    Enumeration Members

    exponential: "EXPONENTIAL"

    Exponential backoff (each retry will wait for an interval that increases exponentially)

    EG: 2 seconds, 4 seconds, 8 seconds, 16 seconds, etc.

    linear: "LINEAR"

    Linear backoff (each retry will wait for a fixed interval)

    EG: 2 seconds, 4 seconds, 6 seconds, 8 seconds, etc.