/**
* date: 2020/9/16
* author: HWilliamgo
* description: 悬浮窗业务MVP
*/
public interface IPLVLiveFloatingContract {
/**
* 悬浮窗View
*/
interface IPLVLiveFloatingView {
/**
* 设置讲师信息
*
* @param nick 讲师昵称
* @param picUrl 讲师图片Url
*/
void updateTeacherInfo(String nick, String picUrl);
}
/**
* 悬浮窗业务Presenter
*/
interface IPLVLiveFloatingPresenter {
/**
* 初始化
*/
void init(IPLVLiveFloatingView view);
/**
* 销毁
*/
void destroy();
}
}
/**
* date: 2020/9/16
* author: HWilliamgo
* description: PPT业务MVP
*/
public interface IPLVPPTContract {
/**
* PPTView
*/
interface IPLVPPTView {
/**
* 发送消息到webView
*
* @param msg 消息
*/
void sendMsgToWebView(String msg);
/**
* 发送消息到webView
*
* @param msg 消息
* @param event 事件
*/
void sendMsgToWebView(String msg, String event);
/**
* 隐藏加载中图片
* 直播时,则聊天室登录后,收到PPT控制消息时,隐藏加载中图片。
* 回放时,在收到PPT的prepare回调后,异常加载中图片。
*/
void hideLoading();
}
/**
* PPT Presenter
*/
interface IPLVPPTPresenter {
/**
* 初始化
*
* @param view view
*/
void init(IPLVPPTView view);
/**
* 移除消息延迟时间
*/
void removeMsgDelayTime();
/**
* 恢复消息延迟时间
*/
void recoverMsgDelayTime();
/**
* 发送画笔消息
*/
void sendPPTBrushMsg(String msg);
/**
* 销毁
*/
void destroy();
}
}
PolyvSocketWrapper.getInstance().getSocketObserver().addOnMessageListener(onMessageListener = new PLVSocketMessageObserver.OnMessageListener() {
@Override
public void onMessage(String listenEvent, String event, String message) {
if (PLVEventConstant.Class.O_TEACHER_INFO.equals(event)) {
PLVTeacherInfoEvent teacherInfoEvent = PLVEventHelper.toMessageEventModel(message, PLVTeacherInfoEvent.class);
if (teacherInfoEvent != null) {
String teacherNick = teacherInfoEvent.getData().getNick();
String picUrl = teacherInfoEvent.getData().getPic();
if (view != null) {
view.updateTeacherInfo(teacherNick, picUrl);
}
}
}
}
});