RetryPolicy Interface
public interface RetryPolicy
An interface for the retry policy.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract
Retry |
getRetryDecision(int currentRetryCount, TransportException lastException)
Determines whether the operation should be retried and the interval until the next retry. |
Method Details
getRetryDecision
public abstract RetryDecision getRetryDecision(int currentRetryCount, TransportException lastException)
Determines whether the operation should be retried and the interval until the next retry.
Parameters:
currentRetryCount
- the number of retries for the given operation
lastException
- the latest exception explaining why the retry is happening. This exception is guaranteed to
be retryable. In the event of a terminal exception occurring, this API will not be called.
Looking at this exception allows you to prevent retry on certain retryable exceptions, but
does not allow you to retry exceptions that are terminal.
Returns:
the retry decision.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Java