Java tutorial
/* * Copyright (C) 2014 a5834099147(lxd) <a5834099147@126.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.lxd.server.link; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import com.lxd.protobuf.msg.Msg.Msg_; import com.lxd.resource.DataPackage; import com.lxd.resource.Resource; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; /** * ? * @author: a5834099147 * @mailto: a5834099147@126.com * @date: 20141216 * @blog : http://a5834099147.github.io/ * @review */ public class ServerHandler extends SimpleChannelInboundHandler<Msg_> { private static final Logger log = LogManager.getLogger(ServerHandler.class); @Override ///< ? protected void channelRead0(ChannelHandlerContext ctx, Msg_ msg) throws Exception { ///< ? Resource.getSingleton().getMsgQueue().submitMsgInQueue(new DataPackage(msg, ctx.channel())); log.info("???"); } }