你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ITransientErrorDetectionStrategy Interface

public interface ITransientErrorDetectionStrategy

Defines an interface that must be implemented by custom components responsible for detecting specific transient conditions.

Method Summary

Modifier and Type Method and Description
boolean isTransient(Exception ex)

Determines whether the specified exception represents a transient failure that can be compensated by a retry.

Method Details

isTransient

public boolean isTransient(Exception ex)

Determines whether the specified exception represents a transient failure that can be compensated by a retry.

Parameters:

ex - The exception object to be verified.

Returns:

true if the specified exception is considered as transient; otherwise, false.

Applies to