例如 SearcherServer 和 SearcherClient 位于不同的文件中:
https://github.com/linkedin/indextank-engine/tree/master/src/main/java/com/flaptor/indextank/rpc
在 Java 中,SearcherClient 在其主要方法中使用,如下所示:
Searcher.Client client = new Searcher.Client(protocol);
例如 SearcherServer 和 SearcherClient 位于不同的文件中:
https://github.com/linkedin/indextank-engine/tree/master/src/main/java/com/flaptor/indextank/rpc
在 Java 中,SearcherClient 在其主要方法中使用,如下所示:
Searcher.Client client = new Searcher.Client(protocol);
您可以将 Searcher.Client 称为com.flaptor.indextank.rpc.Searcher$Client
.
Client 不在 Searcher 的单独文件中:它们都在自动生成的类Searcher.java
中。