ExponentialBackoffWithJitter Class
- java.
lang. Object - RetryPolicy
- com.
microsoft. azure. sdk. iot. device. transport. ExponentialBackoffWithJitter
- com.
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 |
---|---|
Retry |
getRetryDecision(int currentRetryCount, TransportException lastException)
Determines whether the operation should be retried and the interval until the next retry. |
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:
Method Details
getRetryDecision
public RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)
Determines whether the operation should be retried and the interval until the next retry.
Overrides:
ExponentialBackoffWithJitter.getRetryDecision(int currentRetryCount, TransportException lastException)Parameters:
Returns:
Applies to
Azure SDK for Java