Package com.chenshuo.muduo.protorpc.echo.EchoProto.EchoService

Examples of com.chenshuo.muduo.protorpc.echo.EchoProto.EchoService.Interface


public class EchoServer {

    public static void main(String[] args) {
        RpcServer server = new RpcServer();
        server.registerService(EchoProto.EchoService.newReflectiveService(new Interface() {
            @Override
            public void echo(RpcController controller, EchoRequest request, RpcCallback<EchoResponse> done) {
                done.run(EchoResponse.newBuilder().setPayload(request.getPayload()).build());
            }
        }));
View Full Code Here

TOP

Related Classes of com.chenshuo.muduo.protorpc.echo.EchoProto.EchoService.Interface

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.