<PackageReference Include="Polly.Core" Version="8.0.0-alpha.5" />

RetryHelper

static class RetryHelper
using System; using System.Runtime.CompilerServices; namespace Polly.Retry { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] internal static class RetryHelper { private const double ExponentialFactor = 2; public static bool IsValidDelay(TimeSpan delay) { return delay >= TimeSpan.Zero; } public static TimeSpan GetRetryDelay(RetryBackoffType type, int attempt, TimeSpan baseDelay, ref double state, Func<double> randomizer) { if (!(baseDelay == TimeSpan.Zero)) { switch (type) { case RetryBackoffType.Constant: return baseDelay; case RetryBackoffType.Linear: return (double)(attempt + 1) * baseDelay; case RetryBackoffType.Exponential: return Math.Pow(2, (double)attempt) * baseDelay; case RetryBackoffType.ExponentialWithJitter: return DecorrelatedJitterBackoffV2(attempt, baseDelay, ref state, randomizer); default: throw new ArgumentOutOfRangeException("type", type, "The retry backoff type is not supported."); } } return baseDelay; } private static TimeSpan DecorrelatedJitterBackoffV2(int attempt, TimeSpan baseDelay, ref double prev, Func<double> randomizer) { double val = (double)TimeSpan.MaxValue.Ticks - 1000; long ticks = baseDelay.Ticks; double num = (double)attempt + randomizer(); double num2 = Math.Pow(2, num) * Math.Tanh(Math.Sqrt(4 * num)); double num3 = num2 - prev; prev = num2; return TimeSpan.FromTicks((long)Math.Min(num3 * 0.7142857142857143 * (double)ticks, val)); } } }