ProcessOptions
Options for process.
Import:
import type { ProcessOptions } from 'obsidian-dev-utils/obsidian/vault';Signature:
export interface ProcessOptions extends RetryOptionsExtends: RetryOptions
Properties
| Property | Type | Description |
|---|---|---|
| abortSignal? | AbortSignal | A abort signal to cancel the retry operation. (Inherited from RetryOptions) |
| resourceLockComponent | null | ResourceLockComponent | An resource-lock component used to lock the file's editor read-only for the duration of processing. The lock is reference-counted, so it composes with any outer operation-level lock on the same note. |
| retryDelayInMilliseconds? | number | A delay in milliseconds between retry attempts. (Inherited from RetryOptions) |
| shouldFailOnMissingFile? | boolean | Whether to fail if the file is missing or deleted. |
| shouldRetryOnError? | boolean | Whether to retry the function on error. (Inherited from RetryOptions) |
| shouldShowTimeoutNotice? | boolean | Whether to show a timeout notice. |
| timeoutInMilliseconds? | number | A maximum time in milliseconds to wait before giving up on retrying. (Inherited from RetryOptions) |
Links to this page: