会议事件变更通知
设置会议事件相关的通知监听。
使用场景
会议来电场景:onConfIncomingNotify
会议信息更新场景:onMeetingInfoChanged
会议列表更新场景:onConfListInfoChanged
会议结束场景:onConfEndedNotify
会议角色变更场景:onSelfRoleChanged
添加与会者场景:onAttendeeAddedNotify
会中窗口最小化场景:onMeetingPageMinimizedNotify
等候室成员列表变更场景:onWaitingListChanged
会议弱网提示场景:onPoorNetworkQualityInfoNotify
立即会议记录场景:onP2PConfRecordNotify
与会者列表变更场景:onAttendeeListChanged
会议状态变更场景:onConfStatusChanged
字幕场景:onRealTimeSubtitleInfoNotify、onSubtitleRecordNotify、onSubtitleStateChanged
本地录制场景:onSelfLocalRecordStateNotify、onLocalRecordOperateInterruptNotify
等候室场景:onWaitingRoomStateChanged
方法定义
1
|
setMeetingEventNotify(meetingEventNotify?: HWMMeetingEventNotify): void; |
1 2 3 4 5 6 7 8 9 |
const meetingEventNotify: HWMMeetingEventNotify= { onConfIncomingNotify: () => { console.log('会议来电'); }, onConfEndedNotify: () => { console.log('会议结束'); } } UISDK.getNotifyApi().setMeetingEventNotify(meetingEventNotify); |