Package com.taobao.zeus.socket.protocol.Protocol

Examples of com.taobao.zeus.socket.protocol.Protocol.Response


              status = Status.ERROR;
            }
            if (exception != null) {
              errorText = exception.getMessage();
            }
            Response resp = Response.newBuilder().setRid(
                req.getRid()).setOperate(Operate.Schedule)
                .setStatus(status).setErrorText(errorText)
                .build();
            SocketLog
                .info("send execute response,execute complete,rid="
View Full Code Here

TOP

Related Classes of com.taobao.zeus.socket.protocol.Protocol.Response

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.