Polly.Retry.RetryHelper
namespace Polly.
Retry
{
internal static class RetryHelper
{
public static bool IsValidDelay(
TimeSpan delay);
public static TimeSpan GetRetryDelay(
DelayBackoffType type,
bool jitter,
int attempt,
TimeSpan baseDelay,
TimeSpan?
maxDelay,
ref double state,
Func<
double>
randomizer);
}
}