TamsRetrySettings interface

Retry and backlog policy for a TAMS flow push.

Signature:

export interface TamsRetrySettings

Properties

Property Type Description

initialBackoffMs?

number

(Optional) First backoff, doubling up to maxBackoffMs. Default 500ms.

maxAttempts?

number

(Optional) Total attempts per segment, including the first. 1 disables retrying. Default 3.

maxBackoffMs?

number

(Optional) Ceiling on the backoff. Default 5000ms.

maxPendingSegments?

number

(Optional) Queue bound. Beyond this many segments waiting to be pushed, the oldest is dropped — a live push that cannot keep up sheds history rather than falling ever further behind, and memory stays bounded. Default 10.