ExponentialBackoffWithJitter Class

  • java.lang.Object
    • com.microsoft.azure.sdk.iot.device.transport.ExponentialBackoffWithJitter

Implements

public class ExponentialBackoffWithJitter
implements RetryPolicy

Represents a retry policy that performs exponential backoff with jitter retries.

Constructor Summary

Constructor Description
ExponentialBackoffWithJitter()

Constructor with default backoff values and firstFastRetry

ExponentialBackoffWithJitter(int retryCount, long minBackoff, long maxBackoff, long deltaBackoff, boolean firstFastRetry)

Constructor.

Method Summary

Modifier and Type Method and Description
RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)

Determines whether the operation should be retried and the interval until the next retry.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

ExponentialBackoffWithJitter

public ExponentialBackoffWithJitter()

Constructor with default backoff values and firstFastRetry

ExponentialBackoffWithJitter

public ExponentialBackoffWithJitter(int retryCount, long minBackoff, long maxBackoff, long deltaBackoff, boolean firstFastRetry)

Constructor.

Parameters:

retryCount - the max number of retries allowed in the policies.
minBackoff - the min interval between each retry.
maxBackoff - the max interval between each retry.
deltaBackoff - the max delta allowed between retries.
firstFastRetry - indicates whether the first retry should be immediate.

Method Details

getRetryDecision

public RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)

Determines whether the operation should be retried and the interval until the next retry.

Parameters:

currentRetryCount - the number of retries for the given operation
lastException

Returns:

the retry decision.

Applies to