public ServerHandler(RsfContext rsfContext) {
this.rsfContext = rsfContext;
}
public void channelActive(ChannelHandlerContext ctx) throws Exception {
Channel channel = ctx.channel();
if (channel.attr(NetworkChanneKey).get() == null)
channel.attr(NetworkChanneKey).set(new NetworkChanne(channel));
super.channelActive(ctx);
}
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
if (msg instanceof RequestMsg == false)