Connect to a remote, TCP based API server.
abstract static class API { string someMethod(string name); } auto client = clientTCP!API("127.0.0.1", 8030); client.someMethod("john"); client.closeTCP();
See Implementation
Connect to a remote, TCP based API server.