ExponentialBackoff(Int32, TimeSpan, TimeSpan, TimeSpan) コンストラクター

定義

ExponentialBackoff のインスタンスを作成します。

public ExponentialBackoff (int retryCount, TimeSpan minBackoff, TimeSpan maxBackoff, TimeSpan deltaBackoff);
new Microsoft.Azure.Devices.Client.ExponentialBackoff : int * TimeSpan * TimeSpan * TimeSpan -> Microsoft.Azure.Devices.Client.ExponentialBackoff
Public Sub New (retryCount As Integer, minBackoff As TimeSpan, maxBackoff As TimeSpan, deltaBackoff As TimeSpan)

パラメーター

retryCount
Int32

再試行の最大数。

minBackoff
TimeSpan

バックオフの最小時間

maxBackoff
TimeSpan

最大バックオフ時間。

deltaBackoff
TimeSpan

再試行間の指数遅延のランダム差分を計算するために使用される値。

適用対象