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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java