Const
Specifies the delay between retry attempts for API requests that are rejected due to the global rate limit.
The delay for each retry attempt is calculated using the following formula:
const delay = Math.floor(var * Math.random()) + min Copy
const delay = Math.floor(var * Math.random()) + min
Readonly
The constant portion of the delay
The random variable portion of the delay
ScreepsClientConfig.retry429Global to enable/disable this behavior
Specifies the delay between retry attempts for API requests that are rejected due to the global rate limit.
The delay for each retry attempt is calculated using the following formula: