com.lxd.client.link.ClientHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.lxd.client.link.ClientHandler.java

Source

/*
 * 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.client.link;

import com.lxd.client.resource.ClientResource;
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 ClientHandler extends SimpleChannelInboundHandler<Msg_> {

    @Override
    ///< ?
    protected void channelRead0(ChannelHandlerContext ctx, Msg_ msg) throws Exception {
        ///< ?
        Resource.getSingleton().getMsgQueue().submitMsgInQueue(new DataPackage(msg, ctx.channel()));
    }

    @Override
    ///< ??
    public void channelActive(ChannelHandlerContext ctx) throws Exception {
        super.channelActive(ctx);
        ClientResource.getSingleton().setChannel(ctx.channel());
    }

}