fctom1215
2020-02-12 d9e3b2f893d810177264f1e77bd6ab1000d8f608
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package safeluck.drive.evaluation.im.handler;
 
/**
 * MyApplication2
 * Created by lzw on 2019/12/12. 16:09:02
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public abstract class AbstractMessageHandler implements IMessageHandler {
    @Override
    public void execute(String msg) {
        action(msg);
    }
    protected abstract void action(String msg);
}