HedgingConstants
using System;
using System.Runtime.CompilerServices;
namespace Polly.Hedging
{
    [System.Runtime.CompilerServices.NullableContext(1)]
    [System.Runtime.CompilerServices.Nullable(0)]
    internal static class HedgingConstants
    {
        public const string DefaultName = "Hedging";
        public const string OnHedgingEventName = "OnHedging";
        public const int DefaultMaxHedgedAttempts = 1;
        public const int MinimumHedgedAttempts = 1;
        public const int MaximumHedgedAttempts = 10;
        public static readonly TimeSpan DefaultHedgingDelay = TimeSpan.FromSeconds(2);
    }
}