feat(新增): 🚀 PipLineServer的链式传输

This commit is contained in:
bunny 2024-05-24 09:59:26 +08:00
parent 9f4cdfb04f
commit 95f30e93aa
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ public class PipLineServer {
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
log.info("第二个");
// 将数据传输给下一个链如果不使用下一个不会接受到相应内容
super.channelRead(ctx, msg);
}
});