Partager via


ExponentialRetry(TimeSpan, Int32, Nullable<TimeSpan>) Constructeur

Définition

Initialise une nouvelle instance de la classe ExponentialRetry à l'aide du delta et du nombre maximal de tentatives spécifiés.

public ExponentialRetry (TimeSpan deltaBackoff, int maxRetries, TimeSpan? maxBackoff = default);
new Microsoft.Azure.Batch.Common.ExponentialRetry : TimeSpan * int * Nullable<TimeSpan> -> Microsoft.Azure.Batch.Common.ExponentialRetry
Public Sub New (deltaBackoff As TimeSpan, maxRetries As Integer, Optional maxBackoff As Nullable(Of TimeSpan) = Nothing)

Paramètres

deltaBackoff
TimeSpan

Intervalle d’interruption entre les nouvelles tentatives, où l’interruption résultante est 2^n * deltaBackoff (où n est le nombre de nouvelles tentatives)

maxRetries
Int32

Nombre maximal de nouvelles tentatives.

maxBackoff
Nullable<TimeSpan>

Durée maximale d’attente entre les nouvelles tentatives.

S’applique à