@runloop/remote-agents-sdk
    Preparing search index...

    Interface CodexAxonTransportOptions

    interface CodexAxonTransportOptions {
        afterSequence?: number;
        onAxonEvent?: (event: AxonEventView) => void;
        replayTargetSequence?: number;
        source?: string | (() => string | undefined);
        verbose?: boolean;
    }
    Index

    Properties

    afterSequence?: number
    onAxonEvent?: (event: AxonEventView) => void
    replayTargetSequence?: number
    source?: string | (() => string | undefined)

    The source string attached to every published Axon event, or a resolver invoked at publish time to obtain it. Use the resolver form to change the source between messages without recreating the transport (e.g. () => this.currentSource). When omitted, or when the resolver returns undefined, the default is used.

    "codex-sdk-client"

    verbose?: boolean