ChaosLatencyConstants
using System;
using System.Runtime.CompilerServices;
namespace Polly.Simmy.Latency
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
internal static class ChaosLatencyConstants
{
public const string DefaultName = "Chaos.Latency";
public const string OnLatencyInjectedEvent = "Chaos.OnLatency";
public static readonly TimeSpan DefaultLatency = TimeSpan.FromSeconds(30);
}
}