yy1717
2020-03-19 3d3a5aa436645e5af1a4877338319ff8274e0346
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;
    }
}