RetryExponential Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
RetryPolicy implementation where the delay between retries will grow in a staggered exponential manner. RetryPolicy can be set on the client using EventHubClient. RetryIntervals will be computed using a retryFactor which is a function of deltaBackOff (MaximumBackoff - MinimumBackoff) and MaximumRetryCount
public sealed class RetryExponential : Microsoft.Azure.EventHubs.RetryPolicy
type RetryExponential = class
inherit RetryPolicy
Public NotInheritable Class RetryExponential
Inherits RetryPolicy
- Inheritance
Constructors
RetryExponential(TimeSpan, TimeSpan, Int32) |
Returns a new RetryExponential retry policy object. |
Methods
Clone() |
Creates a new copy of this instance. |
GetNextRetryInterval(Exception, TimeSpan, Int32) |
Gets the timespan for the next retry operation. (Inherited from RetryPolicy) |
OnGetNextRetryInterval(Exception, TimeSpan, Int32, Int32) | (Inherited from RetryPolicy) |
Applies to
Azure SDK for .NET