netty中的channelActive和channelRead有什么区别?

时间:2019-05-06 03:49:38

标签: java netty

有人知道吗 netty中的channelActive和channelRead有什么区别?

我正在通过阅读《 Netty用户指南》(https://netty.io/wiki/user-guide-for-4.x.html

来学习Netty。

我试图编写一个echo服务器,以下是我的入站ChannelHandler

我已经启动了echo服务器,当我尝试使用其IP地址和端口对服务器进行telnet时,除了以下消息外,没有输出:“与主机的连接丢失”

调试代码时,我发现执行进入方法channelActive而不是channelRead

我想知道channelActivechannelRead在净值上有什么区别,为什么执行会陷入channelActive

以下是我的ChannelHandler

package com.yjz.middleware.netty;

import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelFutureListener;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import io.netty.util.CharsetUtil;
import io.netty.util.ReferenceCountUtil;
import io.netty.util.ReferenceCounted;

import java.nio.Buffer;

public class DiscardServerHandler extends ChannelInboundHandlerAdapter {
  @Override
  public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
    ByteBuf in = (ByteBuf) msg;
    System.out.print(in.toString(CharsetUtil.UTF_8));
    ctx.write(msg);
    ctx.flush();
  }

  @Override
  public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
    // Close the connection when an exception is raised.
    cause.printStackTrace();
    ctx.close();
  }

  @Override
  public void channelActive(ChannelHandlerContext ctx) throws Exception {
    final ByteBuf time = ctx.alloc().buffer(4);
    time.writeInt((int) (System.currentTimeMillis() / 1000L + 2208988800L));
    final ChannelFuture f = ctx.writeAndFlush(time);
    f.addListener(new ChannelFutureListener() {
      @Override
      public void operationComplete(ChannelFuture future) throws Exception {
        assert f == future;
        ctx.close();
      }
    });
  }
}

1 个答案:

答案 0 :(得分:2)

区别在于,通道激活后将调用channelActive(...)(对于TCP表示通道已连接),而收到消息后将调用channelRead(...)

当您直接在ChannelFutureListener中使用的channelActive(...)中关闭频道时,您的channelRead(...)永远不会被调用。