Namespace Azure.Iot.Operations.Protocol.Retry
Classes
- ExponentialBackoffRetryPolicy
Implements Binary Exponential Backoff (BEB) retry policy as follows: CurrentExponent = min(MaxExponent, baseExponent + currentRetryCount) RetryDelay = min(pow(2, CurrentExponent), maxWait) milliseconds
- NoRetryPolicy
A retry policy that will never retry.
- RetryExpiredException
This exception is thrown when an operation is cancelled because the configured retry policy dictated that the operation shouldn't retry any longer.