IExponentialOptions are passed into the ExponentialBackoff constructor. The
backoff equation is, in general, min(max, initial ^ n), where n is
an incremented backoff factor. The result of the equation is a delay
given in milliseconds.
typedef
{Object} IExponentialOptions
property
{Number} initial The initial delay passed to the equation.
property
{Number} random Random factor to subtract from the n count.
property
{Number} max Max is the maximum value of the delay.
IExponentialOptions are passed into the ExponentialBackoff constructor. The backoff equation is, in general, min(max, initial ^ n), where
n
is an incremented backoff factor. The result of the equation is a delay given in milliseconds.{Object} IExponentialOptions
{Number} initial The initial delay passed to the equation.
{Number} random Random factor to subtract from the
n
count.{Number} max Max is the maximum value of the delay.