Meshpocalypse Semantic
    Preparing search index...

    Interface RpcBody

    Request body for POST /mesh/rpc

    interface RpcBody {
        data: Record<string, unknown>;
        subject: string;
        timeoutMs?: number;
    }
    Index

    Properties

    data: Record<string, unknown>

    Arbitrary JSON payload

    subject: string

    NATS subject for the RPC target

    timeoutMs?: number

    RPC timeout in milliseconds. Default: 5000