Interface ConsumeRetryContext
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
public interface ConsumeRetryContext
Properties
RetryAttempt
The retry attempt in progress, or zero if this is the first time through
int RetryAttempt { get; }
Property Value
RetryCount
The number of retries that have already been attempted, note that this is zero on the first retry attempt
int RetryCount { get; }
Property Value
Methods
CreateNext<TContext>(RetryContext)
TContext CreateNext<TContext>(RetryContext retryContext) where TContext : class, ConsumeRetryContext
Parameters
retryContext
RetryContext
Returns
- TContext
Type Parameters
TContext
NotifyPendingFaults()
Task NotifyPendingFaults()