@pwngh/economy-lab
    Preparing search index...

    Type Alias CallOptions

    type CallOptions = {
        correlationId?: string;
        signal?: AbortSignal;
    }
    Index
    correlationId?: string

    Correlation id of the request driving this call. Read by submit's outbox enqueue, which stamps it onto the event envelope so the relay's logs can name the originating request; every other consumer ignores it.

    signal?: AbortSignal

    Aborts the adapter's wait, not work already done: an adapter observes it on network and database waits, and a caller treats an aborted call's effects as unknown, never as undone.