Перейти к содержимому
Русский

retry

Это содержимое пока не доступно на вашем языке.

retry<T>(factory, options): Promise<T>

Defined in: src/pattern/retry.ts:24

Invoke factory up to options.attempts times with configurable exponential backoff. Returns the first successful result. Propagates the final error if every attempt fails or shouldRetry vetoes a retry.

T

() => Promise<T>

RetryOptions

Promise<T>