added stub for an InjectableTcpRpcClient

creating a TcpClient, performing the Handshake and then injecting the stream into the RpcClient could be a viable workaround to the internal stream of the default RpcClient being inaccessible
This commit is contained in:
Kai Jan Kriegel 2020-11-12 10:14:41 +01:00
parent ad778d174d
commit 6ad2d27659

View File

@ -5,6 +5,8 @@ using Capnp.Rpc;
namespace FabAccessAPI {
class InjectableTcpRpcClient : TcpRpcClient {
public InjectableTcpRpcClient() {
throw new NotImplementedException();
}
}
}