package com.anyun.im_lib;
|
|
import com.anyun.im_lib.listener.OnEventListener;
|
|
/**
|
* MyApplication2
|
* Created by lzw on 2019/12/2. 14:02:14
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class MsgDispatcher {
|
|
private OnEventListener onEventListener;
|
|
public void setOnEventListener(OnEventListener listener) {
|
this.onEventListener = listener;
|
}
|
|
public void receivedMsg(byte[] msg){
|
// TODO: 2019/12/12
|
if (onEventListener != null){
|
onEventListener.dispatchMsg(msg);
|
}
|
}
|
}
|