using System.Collections.Generic;
using Polly.Contrib.WaitAndRetry;
using System.Threading.Tasks;
public async static Task Main()
var firstDelay = TimeSpan.FromMilliseconds(75);
var delays = Backoff.DecorrelatedJitterBackoffV2(
medianFirstRetryDelay: firstDelay,
foreach (var delay in delays)
.Handle<TimeoutRejectedException>()
.WaitAndRetryAsync(3, retryAttempt => TimeSpan.FromSeconds(retryAttempt))
.WrapAsync(Policy.TimeoutAsync(1, TimeoutStrategy.Optimistic))
.ExecuteAsync(async ct =>
{Console.WriteLine("running...");
await Task.Delay(1005, ct);}, CancellationToken.None);