plainfp - v0.1.0
GitHub
npm
Preparing search index...
result-async
RetryOptions
Type Alias RetryOptions
Configuration for
retry
.
times
: total number of attempts (>= 1). A value of
1
means no retry.
delayMs
: base delay between attempts in milliseconds. Defaults to
0
.
backoff
:
"linear"
multiplies
delayMs
by attempt count;
"exponential"
doubles on each attempt. Defaults to
"linear"
.
type
RetryOptions
=
{
backoff
?:
"linear"
|
"exponential"
;
delayMs
?:
number
;
times
:
number
;
}
Index
Properties
backoff?
delay
Ms?
times
Properties
Optional
Readonly
backoff
backoff
?:
"linear"
|
"exponential"
Optional
Readonly
delay
Ms
delayMs
?:
number
Readonly
times
times
:
number
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Properties
backoff
delay
Ms
times
GitHub
npm
plainfp - v0.1.0
Loading...
Configuration for retry.
times: total number of attempts (>= 1). A value of1means no retry.delayMs: base delay between attempts in milliseconds. Defaults to0.backoff:"linear"multipliesdelayMsby attempt count;"exponential"doubles on each attempt. Defaults to"linear".