netty chinaread 不执行 的总结

netty chinaedred 不执行

  • 目录
    • 概述
      • 需求:
    • 设计思路
    • 实现思路分析
      • 1.netty chinaedred
    • 拓展实现
    • 性能参数测试:
  • 参考资料和推荐阅读

Survive by day and develop by night.
talk for import biz , show your perfect code,full busy,skip hardness,make a better result,wait for change,challenge Survive.
happy for hardess to solve denpendies.

目录

在这里插入图片描述

概述

netty 的方法:

需求:

设计思路

实现思路分析

1.netty chinaedred

解决1:
1:ctx.fireChannelRead(msg); //通过当前节点往下传播事件

2: ctx.pipeline().fireChannelRead(msg);//通过头节点往下传递事件

解决2:
1.客户端一定要添加解码器和加码器,否则出现当前的服务器无法解析和无法调用解析器的问题,非常隐秘的错误

解决3: 更改
2.更改对应的

@Override
protected void initChannel(SocketChannel socketChannel) throws Exception {
socketChannel.pipeline().addLast(messageForwardInboundHandler);
socketChannel.pipeline().addLast(new IdleStateHandler(clientConfig.getReaderIdleTimeSeconds(),clientConfig.getWriterIdleTimeSeconds(),clientConfig.getAllIdleTimeSeconds(), TimeUnit.SECONDS));
socketChannel.pipeline().addLast(message2ByteOutboundHandler);
socketChannel.pipeline().addLast(clientByte2MessageInboundHandler);
// socketChannel.pipeline().addLast(messageForwardInboundHandler);
}
放到对应的提前居然可以了。

拓展实现

这里参考:github:简单实现上述流程:
入门级实现:
: 部分源码实现.
: 源码实现

性能参数测试:

参考资料和推荐阅读

  1. 暂无

欢迎阅读,各位老铁,如果对你有帮助,点个赞加个关注呗!同时,期望各位大佬的批评指正~

你可能感兴趣的:(java)