Share via


DelayStrategy.GetNextDelayCore(Response, Int32) Method

Definition

Gets the next delay interval. Implement this method to provide custom delay logic. The Max Delay, jitter, and any Retry-After headers will be applied to the value returned from this method.

protected abstract TimeSpan GetNextDelayCore (Azure.Response? response, int retryNumber);
abstract member GetNextDelayCore : Azure.Response * int -> TimeSpan
Protected MustOverride Function GetNextDelayCore (response As Response, retryNumber As Integer) As TimeSpan

Parameters

response
Response

The response, if any, returned from the service.

retryNumber
Int32

The retry number.

Returns

A TimeSpan representing the next delay interval.

Applies to