Android之Mina频繁发送心跳包
最近使用 Mina框架实现长连接时,发现客户端只发了一次心跳请求,服务器却不断的循环收到该请求。先来看看心跳包配置:执行:connection.getFilterChain().addLast("heartbeat", getHeartBeat());通过断点KeepAliveMessageFactoryImpl 类发现:/** * 发送心跳包请求 */public class K...