DelayStrategy.GetNextDelayCore(Response, Int32) Method
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.
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.