TcpJsonRpcAutoClient

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");
class TcpJsonRpcAutoClient : JsonRpcAutoAttributeClient!I(
I
) {}

Constructors

this
this(string host, ushort port, RpcInterfaceSettings settings)
Undocumented in source.

Meta