For the complete documentation index, see llms.txt.
Skip to main content
Version: 8.10 (unreleased)

Class: EventualConsistencyTimeout

Opt-In Subpath

The Effect API is an opt-in subpath (@camunda8/orchestration-cluster-api/effect) and requires the optional effect peer dependency. The main . entry stays Promise-based and pulls in zero Effect at runtime.

An eventual-consistency poll that did not converge within its budget.

Extends

  • YieldableError<this> & object & Readonly<{ attempts?: number; cause?: unknown; elapsedMs?: number; message: string; }>

Constructors

Constructor

new EventualConsistencyTimeout(args): EventualConsistencyTimeout;

Parameters

args
attempts?

number

cause?

unknown

elapsedMs?

number

message

string

Returns

EventualConsistencyTimeout

Inherited from

Data.TaggedError('EventualConsistencyTimeout')<{
readonly attempts?: number;
readonly elapsedMs?: number;
readonly message: string;
readonly cause?: unknown;
}>.constructor

Properties

attempts?

readonly optional attempts?: number;

Inherited from

Data.TaggedError("EventualConsistencyTimeout").attempts;

elapsedMs?

readonly optional elapsedMs?: number;

Inherited from

Data.TaggedError("EventualConsistencyTimeout").elapsedMs;