RetryPolicyProvider.ExponentialRetryProvider Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un nouveau RetryPolicyProvider à l’aide de la ExponentialRetry stratégie .
public static Microsoft.Azure.Batch.RetryPolicyProvider ExponentialRetryProvider (TimeSpan deltaBackoff, int maxRetries, TimeSpan? maxBackoff = default);
static member ExponentialRetryProvider : TimeSpan * int * Nullable<TimeSpan> -> Microsoft.Azure.Batch.RetryPolicyProvider
Public Shared Function ExponentialRetryProvider (deltaBackoff As TimeSpan, maxRetries As Integer, Optional maxBackoff As Nullable(Of TimeSpan) = Nothing) As RetryPolicyProvider
Paramètres
- deltaBackoff
- TimeSpan
Intervalle d’interruption entre les nouvelles tentatives, où le backoff résultant est 2^n * deltaBackoff (où n est le nombre de nouvelles tentatives)
- maxRetries
- Int32
Nombre maximal de nouvelles tentatives.
Retours
Un fournisseur configuré pour effectuer des nouvelles tentatives exponentielles à l’aide des tentatives de backoff et max spécifiées.
S’applique à
Azure SDK for .NET