[3.4.0]消息盒子事件监听回调接口增加默认实现

This commit is contained in:
xuxinchao
2023-07-13 20:34:58 +08:00
parent f3e9de10d0
commit 7c1737214c

View File

@@ -9,17 +9,17 @@ import com.mogo.eagle.core.data.msgbox.MsgBoxBean
*/
interface IMsgBoxEventListener {
//汇总事件点击监听
fun onSummaryClickEvent()
fun onSummaryClickEvent(){}
//更新提示红点视图
fun onUpdateTipEvent(isShow: Boolean)
fun onUpdateTipEvent(isShow: Boolean){}
//气泡态运营平台事件点击监听
fun onBubbleOperationClickEvent(msgBoxBean: MsgBoxBean)
fun onBubbleOperationClickEvent(msgBoxBean: MsgBoxBean){}
//气泡态V2X消息事件点击监听
fun onBubbleV2XClickEvent(msgBoxBean: MsgBoxBean)
fun onBubbleV2XClickEvent(msgBoxBean: MsgBoxBean){}
//气泡态上报消息事件点击监听
fun onBubbleReportClickEvent(msgBoxBean: MsgBoxBean)
fun onBubbleReportClickEvent(msgBoxBean: MsgBoxBean){}
}