Used to create an auto-implemented Tcp Rpc client from an interface.
interface IAPI { void send(string data); } auto client = new TcpJsonRpcAutoClient!IAPI("http://127.0.0.1:8080/rpc_2"); client.send("data");
See Implementation
Used to create an auto-implemented Tcp Rpc client from an interface.