大飞

Results 1 issues of 大飞

![image](https://user-images.githubusercontent.com/30973587/103188021-b414f780-4901-11eb-922c-bac6ee1b7816.png) public class ClientHandlerInitializer extends ChannelInitializer { @Override protected void initChannel(Channel ch) throws Exception { ch.pipeline() .addLast(new IdleStateHandler(0, 10, 0)) .addLast(new ProtobufVarint32FrameDecoder()) .addLast(new ProtobufDecoder(MessageBase.Message.getDefaultInstance())) .addLast(new ProtobufVarint32LengthFieldPrepender()) .addLast(new ProtobufEncoder()) .addLast(new HeartbeatHandler())...