Anchorage API reference
    Preparing search index...

    Host-only dispatch recovery. Unlike public status, the ephemeral thread and resource may already have been released after a terminal unthreaded run, so this seam authorizes on the durable run owner before the target host proves the addressed thread/resource/run correlation from its snapshot.

    interface AgentThreadDispatchTopology {
        requireBoundThread: BoundThreadTargetValidator;
        dispatchStatus(
            context: ActorContext,
            input: AgentThreadRunRef,
        ): Promise<AgentRunEnvelope | undefined>;
        observe(
            context: ActorContext,
            input: AgentThreadObserveInput,
        ): Promise<Response>;
        resume(
            context: ActorContext,
            record: ApprovalRecord,
            decision: ApprovalDecision,
        ): Promise<AgentRunEnvelope>;
        start(
            context: ActorContext,
            input: AgentThreadStartInput,
        ): Promise<AgentRunEnvelope>;
        status(
            context: ActorContext,
            input: AgentThreadRunRef,
        ): Promise<AgentRunEnvelope | undefined>;
        terminate?(
            context: ActorContext,
            input: AgentThreadRunRef,
            replayOnly?: boolean,
        ): Promise<AgentRunEnvelope>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    requireBoundThread: BoundThreadTargetValidator

    Methods