Documentation / @agentick/connector / RetryConfig
Interface: RetryConfig
Defined in: connector/src/types.ts:69
Properties
baseDelay?
optionalbaseDelay:number
Defined in: connector/src/types.ts:73
Base delay in ms for exponential backoff. Default: 1000.
maxAttempts?
optionalmaxAttempts:number
Defined in: connector/src/types.ts:71
Maximum delivery attempts before giving up. Default: 3.
maxDelay?
optionalmaxDelay:number
Defined in: connector/src/types.ts:75
Maximum delay in ms. Default: 30000.
onExhausted()?
optionalonExhausted: (error,output) =>void
Defined in: connector/src/types.ts:77
Called when all retries are exhausted.
Parameters
error
Error
output
Returns
void