Member Junction
    Preparing search index...

    Worker → Host: sandbox code wants the host to service a bridge call.

    interface BridgeCallIpcMessage {
        args: unknown;
        callId: string;
        functionName: string;
        requestId: string;
        type: "bridge-call";
    }
    Index

    Properties

    args: unknown

    JSON-round-tripped args.

    callId: string

    Unique per call so Promise.all-style concurrency is correlated correctly.

    functionName: string

    Name registered in the execution's bridgeHandlers map.

    requestId: string
    type: "bridge-call"