package com.anyun.im_lib; import com.anyun.im_lib.interf.IMSClientInteface; import io.netty.channel.ChannelInboundHandlerAdapter; /** * MyApplication2 * Created by lzw on 2019/12/4. 11:50:05 * 邮箱:632393724@qq.com * All Rights Saved! Chongqing AnYun Tech co. LTD */ public class HeartbeatRespHandler extends ChannelInboundHandlerAdapter { private static final String TAG = HeartbeatRespHandler.class.getSimpleName(); private IMSClientInteface imsClient; public HeartbeatRespHandler(IMSClientInteface imsClient) { this.imsClient = imsClient; } }