RetryPolicy.OnShouldRetry(TimeSpan, Int32, TimeSpan) メソッド

定義

再試行ポリシーの再試行間隔を計算します。

protected abstract bool OnShouldRetry (TimeSpan remainingTime, int currentRetryCount, out TimeSpan retryInterval);
abstract member OnShouldRetry : TimeSpan * int * TimeSpan -> bool
Protected MustOverride Function OnShouldRetry (remainingTime As TimeSpan, currentRetryCount As Integer, ByRef retryInterval As TimeSpan) As Boolean

パラメーター

remainingTime
TimeSpan

残りの時間。

currentRetryCount
Int32

再試行の合計数。

retryInterval
TimeSpan

再試行間隔。

戻り値

このメソッドが true を返す場合、スレッドが と等しい時間アイドル状態になった後に retryInterval再試行操作が発生します。

適用対象