yy1717
2019-12-30 704a7434b0494e84a578d719daacb72f995b2ad2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
    }
}