kkrpc
    Preparing search index...

    Interface RPCRequest

    Request record for a remote property access, function call, setter, or constructor call.

    interface RPCRequest {
        a?: unknown[];
        id: string;
        meta?: RPCMessageMetadata;
        op: RPCOperation;
        p: string[];
        t: "q";
        v?: unknown;
    }
    Index

    Properties

    Properties

    a?: unknown[]

    Encoded call or constructor arguments.

    id: string

    Request id used to match the eventual response.

    Optional protocol-level metadata, such as trace or log correlation context.

    Operation to perform at p.

    p: string[]

    Property path on the exposed API.

    t: "q"

    Message tag for requests.

    v?: unknown

    Encoded value for setter requests.