Backoff
backoff(
startingThrottleInMsec
,backoffFactor
):PollStrategy
Defined in: packages/agent/src/polling/strategy.ts:114
A strategy that throttle, but using an exponential backoff strategy.
Parameters
Section titled “Parameters”startingThrottleInMsec
Section titled “startingThrottleInMsec”number
The throttle in milliseconds to start with.
backoffFactor
Section titled “backoffFactor”number
The factor to multiple the throttle time between every poll. For example if using 2, the throttle will double between every run.