Send a Request object to the server.
Generally the only reason to use this overload is to send a request with a non-integral ID.
The Request to send.
interface MyAPI { bool my_func(int[] values); } auto client = RPCClient!MyAPI("127.0.0.1", 54321); auto req = Request("my_id", "my_func", [1, 2, 3]); auto response = client.call(req);
See Implementation
Send a Request object to the server.
Generally the only reason to use this overload is to send a request with a non-integral ID.