Skip to content

TransferRetryPolicy

Defined in: src/transfers/TransferEngine.ts:57

Retry policy for transfer execution.

PropertyTypeDescriptionDefined in
maxAttempts?numberMaximum total attempts, including the first attempt. Defaults to 1.src/transfers/TransferEngine.ts:59
optional onRetry(input: TransferRetryDecisionInput): void;

Defined in: src/transfers/TransferEngine.ts:63

Observes retry decisions before the next attempt starts.

ParameterType
inputTransferRetryDecisionInput

void


optional shouldRetry(input: TransferRetryDecisionInput): boolean;

Defined in: src/transfers/TransferEngine.ts:61

Decides whether a failed attempt should be retried. Defaults to SDK retryability metadata.

ParameterType
inputTransferRetryDecisionInput

boolean