Skip to content

Documentation / @agentick/connector / RetryConfig

Interface: RetryConfig

Defined in: connector/src/types.ts:69

Properties

baseDelay?

optional baseDelay: number

Defined in: connector/src/types.ts:73

Base delay in ms for exponential backoff. Default: 1000.


maxAttempts?

optional maxAttempts: number

Defined in: connector/src/types.ts:71

Maximum delivery attempts before giving up. Default: 3.


maxDelay?

optional maxDelay: number

Defined in: connector/src/types.ts:75

Maximum delay in ms. Default: 30000.


onExhausted()?

optional onExhausted: (error, output) => void

Defined in: connector/src/types.ts:77

Called when all retries are exhausted.

Parameters

error

Error

output

ConnectorOutput

Returns

void

Released under the ISC License.