RetryOptions
Options for retryWithTimeout.
Import:
import type { RetryOptions } from 'obsidian-dev-utils/async';Signature:
export interface RetryOptionsProperties
| Property | Type | Description |
|---|---|---|
| abortSignal? | AbortSignal | A abort signal to cancel the retry operation. |
| retryDelayInMilliseconds? | number | A delay in milliseconds between retry attempts. |
| shouldRetryOnError? | boolean | Whether to retry the function on error. |
| timeoutInMilliseconds? | number | A maximum time in milliseconds to wait before giving up on retrying. |
Links to this page: