Type Alias RetryCallbacks<TParameters>

RetryCallbacks: {
    onExecutionAttempt?: OnExecutionAttempt<TParameters>;
    onRetryDelay?: OnRetryDelay<TParameters>;
}

Lifecycle callbacks for the retry middleware. Invoked at key points during retry attempts: before execution and before the delay.

IMPORT_PATH: "@daiso-tech/core/resilience"

Type Parameters

  • TParameters extends unknown[] = unknown[]

Type declaration