Whether this connector is setting up or has finished setting up its connection and is ready to communicate on the network
Sets up the RPC handler by populating connector info, setting up event handlers, and doing one of the following:
Promise that resolves when finished connecting
Sends an event to other processes. Does NOT run the local event subscriptions as they should be run by NetworkEventEmitter after sending on network.
Unique network event type for coordinating between processes
Event data to emit on the network
Optional
methodDocs: SingleMethodDocumentationSend a request and resolve after receiving a response
Type of request (or "method" in JSONRPC jargon) to call
Parameters associated with this request
Promise that resolves to a JSONRPCSuccessResponse or JSONRPCErrorResponse message
Manages the JSON-RPC protocol on the server end of a websocket owned by main. This class is not intended to be instantiated by anything other than RpcWebSocketListener.
Created by RpcWebSocketListener when a client connects to the web socket server. There is one RpcServer object per client that connects to the web socket server.