跳至主要內容

Netty相关

hylexus约 100 字小于 1 分钟

Netty相关

传送门

本小节示例可以在 samples/jt-808-server-sample-customizedopen in new window 找到相关代码。

Netty相关配置需要继承 Jt808ServerConfigurationSupport 来覆盖默认逻辑。

@Configuration
public class Jt808Config extends Jt808ServerConfigurationSupport {

    @Override
    public Jt808ServerNettyConfigure jt808ServerNettyConfigure(HeatBeatHandler heatBeatHandler, Jt808ChannelHandlerAdapter jt808ChannelHandlerAdapter) {
        return new DemoJt808ServerNettyConfigure(heatBeatHandler, jt808ChannelHandlerAdapter);
    }
}

传送门

本小节示例可以在 samples/jt-808-server-sample-customizedopen in new window 找到相关代码。