Interface PerformRpcParams

Parameters for initiating an RPC call

interface PerformRpcParams {
    destinationIdentity: string;
    method: string;
    payload: string;
    responseTimeout?: number;
}

Properties

destinationIdentity: string

The identity of the destination participant

method: string

The method name to call

payload: string

The method payload

responseTimeout?: number

Timeout for receiving a response after initial connection (milliseconds). Default: 10000