OnHedgingArguments<TResult>
Represents arguments used by the on-hedging event.
using System;
using System.Runtime.CompilerServices;
namespace Polly.Hedging
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public readonly struct OnHedgingArguments<[System.Runtime.CompilerServices.Nullable(2)] TResult>
{
[System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
[field: System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
public Outcome<TResult>? Outcome {
[return: System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})]
get;
}
public ResilienceContext Context { get; }
public int AttemptNumber { get; }
public TimeSpan Duration { get; }
public OnHedgingArguments(ResilienceContext context, [System.Runtime.CompilerServices.Nullable(new byte[] {
0,
1
})] Outcome<TResult>? outcome, int attemptNumber, TimeSpan duration)
{
Context = context;
Outcome = outcome;
AttemptNumber = attemptNumber;
Duration = duration;
}
}
}