Interface RpcServerOptions

interface RpcServerOptions {
    enablePing?: boolean;
    maxConcurrency?: number;
    strictMode?: boolean;
}

Properties

enablePing?: boolean

Enable built-in ping handler

maxConcurrency?: number

Global concurrency limit (0 = unlimited)

strictMode?: boolean

Enable strict mode (reject invalid requests immediately)