コード例 #1
0
 public void AddOrUpdate(BasicDeliverEventArgs args, RetryInformation retryInfo)
 {
     TryAddOriginalDelivered(args, retryInfo.OriginalDelivered);
     AddOrUpdateNumberOfRetries(args);
 }
コード例 #2
0
 internal static IPipeContext AddRetryInformation(this IPipeContext context, RetryInformation retryInformation)
 {
     context.Properties.TryAdd(RetryInformationKey, retryInformation);
     return(context);
 }