1

使用netty代理实现的正确方法是什么,但只是在管道中的一个阶段例如`

@Override
  public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) {
        Channel ch = e.getChannel();

        ChannelBuffer time = ChannelBuffers.buffer(4);
      time.writeInt((int) (System.currentTimeMillis() / 1000L + 2208988800L));

      ChannelFuture f = ch.write(time);

     f.addListener(new ChannelFutureListener() {
            public void operationComplete(ChannelFuture future) {
              Channel ch = future.getChannel();
                ch.close();
          }
        });
  }`

不要使用 currentTimeMillis API 获取当前日期,而是向另一台服务器发出异步请求,获取结果,然后继续管道的下一步。提前致谢

4

0 回答 0