mealstrom icon indicating copy to clipboard operation
mealstrom copied to clipboard

Retry Strategies

Open linearray opened this issue 8 years ago • 0 comments

We may want different Strategies for retrying failed actions.

data RetryStrat = Linear Int                 ^ Retry attempt n will happen after n*a seconds
                | Exponential Double Double  ^ Retry attempt n will happen after a^(b+n) seconds

linearray avatar Dec 12 '16 06:12 linearray