NServiceBus.DelayedRetriesSettings.TimeIncrease C# (CSharp) Method

TimeIncrease() public method

Configures the delay interval increase for each failed Delayed Retries attempt.
public TimeIncrease ( System.TimeSpan timeIncrease ) : DelayedRetriesSettings
timeIncrease System.TimeSpan
return DelayedRetriesSettings
        public DelayedRetriesSettings TimeIncrease(TimeSpan timeIncrease)
        {
            Guard.AgainstNegative(nameof(timeIncrease), timeIncrease);

            Settings.Set(Recoverability.DelayedRetriesTimeIncrease, timeIncrease);

            return this;
        }
    }