Partager via


RetryExponential Constructeurs

Définition

Surcharges

RetryExponential(TimeSpan, TimeSpan, Int32)

Initialise une nouvelle instance de la classe RetryExponential.

RetryExponential(TimeSpan, TimeSpan, TimeSpan, TimeSpan, Int32)
Obsolète.

Initialise une nouvelle instance de la classe RetryExponential.

RetryExponential(TimeSpan, TimeSpan, Int32)

Initialise une nouvelle instance de la classe RetryExponential.

public RetryExponential (TimeSpan minBackoff, TimeSpan maxBackoff, int maxRetryCount);
new Microsoft.ServiceBus.RetryExponential : TimeSpan * TimeSpan * int -> Microsoft.ServiceBus.RetryExponential
Public Sub New (minBackoff As TimeSpan, maxBackoff As TimeSpan, maxRetryCount As Integer)

Paramètres

minBackoff
TimeSpan

Valeur de back off minimale à attendre. Cette valeur ne doit pas être supérieure ou égale à MaximumBackoff, sinon les opérations peuvent ne pas être en mesure de réessayer.

maxBackoff
TimeSpan

Valeur de back off maximale à attendre. Cette valeur ne doit pas être supérieure ou égale à la OperationTimeout valeur, sinon les opérations peuvent ne pas être en mesure de réessayer.

maxRetryCount
Int32

Nombre maximal de fois que la stratégie de nouvelle tentative instance calcule l’intervalle de temps de nouvelle tentative. Si le nombre de nouvelles tentatives dépasse cette valeur, la nouvelle tentative se termine, même s’il reste du temps d’opération.

S’applique à

RetryExponential(TimeSpan, TimeSpan, TimeSpan, TimeSpan, Int32)

Attention

This constructor is obsolete. Please use the other constructor instead.

Initialise une nouvelle instance de la classe RetryExponential.

[System.Obsolete("This constructor is obsolete. Please use the other constructor instead.")]
public RetryExponential (TimeSpan minBackoff, TimeSpan maxBackoff, TimeSpan deltaBackoff, TimeSpan terminationTimeBuffer, int maxRetryCount);
[<System.Obsolete("This constructor is obsolete. Please use the other constructor instead.")>]
new Microsoft.ServiceBus.RetryExponential : TimeSpan * TimeSpan * TimeSpan * TimeSpan * int -> Microsoft.ServiceBus.RetryExponential
Public Sub New (minBackoff As TimeSpan, maxBackoff As TimeSpan, deltaBackoff As TimeSpan, terminationTimeBuffer As TimeSpan, maxRetryCount As Integer)

Paramètres

minBackoff
TimeSpan

Valeur de back off minimale à attendre. Cette valeur ne doit pas être supérieure ou égale à MaximumBackoff, sinon les opérations peuvent ne pas être en mesure de réessayer.

maxBackoff
TimeSpan

Valeur de back off maximale à attendre. Cette valeur ne doit pas être supérieure ou égale à la OperationTimeout valeur, sinon les opérations peuvent ne pas être en mesure de réessayer.

deltaBackoff
TimeSpan

Intervalle d’backoff associé à la nouvelle tentative.

terminationTimeBuffer
TimeSpan

Mémoire tampon de délai d’expiration associé à la nouvelle tentative.

maxRetryCount
Int32

Nombre maximal de fois que la stratégie de nouvelle tentative instance calcule l’intervalle de temps de nouvelle tentative. Si le nombre de nouvelles tentatives dépasse cette valeur, la nouvelle tentative se termine, même s’il reste du temps d’opération.

Attributs

S’applique à