HttpJsonRpcAutoClient

Used to create an auto-implemented Http Rpc client from an interface.

interface IAPI
{
    void send(string data);
}

auto client = new HttpJsonRpcAutoClient!IAPI("http://127.0.0.1:8080/rpc_2");
client.send("data");
class HttpJsonRpcAutoClient : JsonRpcAutoAttributeClient!I(
I
) {}

Constructors

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

Meta