A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface ActionCreateOptions

    Collaborators and instance policy supplied when creating an Action.

    interface ActionCreateOptions {
        handler?: ActionHandler | null;
        id?: string;
        nodeMap?: NodeMap;
        registry?: ActionRegistryLike | null;
        session?: ActionSessionContext | null;
        settings?: ActionSettings;
        stream?: WireStream | null;
    }
    Index
    handler?: ActionHandler | null

    Local implementation; may be bound later or absent for remote-only calls.

    id?: string

    Stable call id; generated when omitted.

    nodeMap?: NodeMap

    Node namespace backing input/output port ids.

    registry?: ActionRegistryLike | null

    Registry used to resolve nested action names.

    session?: ActionSessionContext | null

    Optional connection runtime that tracks and routes this action.

    settings?: ActionSettings

    Port binding and post-run retention policy.

    stream?: WireStream | null

    Direct transport used by call, when no session routes it.