Implementation of IBackOff that increases the back-off period for each retry attempt using a
randomization function that grows exponentially. In addition, it also adds a randomize number of milliseconds
for each attempt.
Gets the delta time span used to generate a random milliseconds to add to the next back-off.
If the value is Zero then the generated back-off will be exactly 1, 2, 4,
8, 16, etc. seconds. A valid value is between zero and one second. The default value is 250ms, which means
that the generated back-off will be [0.75-1.25]sec, [1.75-2.25]sec, [3.75-4.25]sec, and so on.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["`ExponentialBackOff` is a class that implements `IBackOff`, designed to manage retry attempts with exponentially increasing back-off periods, and it also randomizes the wait time for each attempt."],["This class provides two constructors: one with default values and another allowing customization of the `deltaBackOff` and `maximumNumOfRetries`."],["The `DeltaBackOff` property, defaulting to 250ms, allows users to configure a random time span that will be added to the next back-off, where a zero value results in a strict doubling of the wait time per attempt."],["The `GetNextBackOff` method is used to retrieve the calculated wait time for the next retry attempt, and if the maximum number of retries has been reached, it will return `TimeSpan.MinValue`."],["The `MaxNumOfRetries` property determines the maximum number of retries that can occur, with the default value being 10, and can be configured when constructing the class."]]],[]]