Package com.chenshuo.muduo.protorpc.RpcServiceProto

Examples of com.chenshuo.muduo.protorpc.RpcServiceProto.ListRpcRequest


        channel.disconnect();
        client.stop();
    }

    public void listRpc(boolean listMethod) throws Exception {
        ListRpcRequest request = ListRpcRequest.newBuilder().setListMethod(listMethod).build();
        ListRpcResponse response = rpcService.listRpc(null, request);
        System.out.println(response);
    }
View Full Code Here


        ListRpcResponse response = rpcService.listRpc(null, request);
        System.out.println(response);
    }

    public void listOneService(String service, boolean listMethod) throws Exception {
        ListRpcRequest request = ListRpcRequest.newBuilder().setServiceName(service).setListMethod(listMethod).build();
        ListRpcResponse response = rpcService.listRpc(null, request);
        System.out.println(response);
    }
View Full Code Here

TOP

Related Classes of com.chenshuo.muduo.protorpc.RpcServiceProto.ListRpcRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.