Grpc.Net.Client.Configuration.HedgingPolicy
The hedging policy for outgoing calls. Hedged calls may execute more than
once on the server, so only idempotent methods should specify a hedging
policy.
namespace Grpc.Net.Client.Configuration
{
public sealed class HedgingPolicy : ConfigObject
{
public int? MaxAttempts { get; set; }
public TimeSpan? HedgingDelay { get; set; }
public IList<StatusCode> NonFatalStatusCodes { get; }
public HedgingPolicy();
}
}