EventHubsRetryPolicy.CalculateRetryDelay(Exception, Int32) Method

Definition

Calculates the amount of time to wait before another attempt should be made.

public abstract TimeSpan? CalculateRetryDelay (Exception lastException, int attemptCount);
abstract member CalculateRetryDelay : Exception * int -> Nullable<TimeSpan>
Public MustOverride Function CalculateRetryDelay (lastException As Exception, attemptCount As Integer) As Nullable(Of TimeSpan)

Parameters

lastException
Exception

The last exception that was observed for the operation to be retried.

attemptCount
Int32

The number of total attempts that have been made, including the initial attempt before any retries.

Returns

The amount of time to delay before retrying the associated operation; if null, then the operation is no longer eligible to be retried.

Applies to