package com.anyun.im_lib;
|
|
import com.anyun.im_lib.interf.IMSClientInteface;
|
import com.anyun.im_lib.netty.NettyTcpClient;
|
|
import java.util.HashMap;
|
import java.util.Map;
|
|
/**
|
* MyApplication2
|
* Created by lzw on 2019/12/2. 14:03:15
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class MsgTimeOutTimerManager {
|
private IMSClientInteface imsClient;
|
private Map<String,MsgTimeoutTimer> mMsgTimeoutMap = new HashMap<>();
|
|
public MsgTimeOutTimerManager(NettyTcpClient nettyTcpClient) {
|
this.imsClient = nettyTcpClient;
|
}
|
|
/**
|
* 添加消息到发送超时管理器
|
* @param message
|
*/
|
public void add(String message){
|
|
if (message == null ){
|
|
}
|
}
|
}
|