RetryPolicy Class
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.
Represents an abstraction for retrying messaging operations. Users should not implement this class, and instead should use one of the provided implementations. RetryPolicy will not be applied when an ambient transaction is found.
public abstract class RetryPolicy
type RetryPolicy = class
Public MustInherit Class RetryPolicy
- Inheritance
-
RetryPolicy
- Derived
Constructors
RetryPolicy() |
Properties
Default |
Returns the default retry policy, RetryExponential. |
IsServerBusy |
Determines whether or not the server returned a busy error. |
NoRetry |
Returns a NoRetry retry policy. |
ServerBusyExceptionMessage |
Gets the exception message when a server busy error is returned. |
Methods
IsRetryableException(Exception) |
Determines whether or not the exception can be retried. |
OnShouldRetry(TimeSpan, Int32, TimeSpan) | |
RunOperation(Func<Task>, TimeSpan) |
Runs a Func<T,TResult>, using the current RetryPolicy. |
Applies to
Azure SDK for .NET