Package com.github.dreamhead.moco

Examples of com.github.dreamhead.moco.SocketResponse


    @Override
    protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
        try {
            SocketRequest request = new DefaultSocketRequest(msg);
            this.monitor.onMessageArrived(request);
            SocketResponse response = new DefaultSocketResponse();
            handleSession(new SessionContext(request, response));
            this.monitor.onMessageLeave(response);
            ctx.write(response.getContent());
        } catch (Exception e) {
            this.monitor.onException(e);
        }
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.SocketResponse

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.