更新时间:2025-01-09 GMT+08:00
分享

会议事件变更通知

设置会议事件相关的通知监听。

使用场景

会议来电场景:onConfIncomingNotify

会议信息更新场景:onMeetingInfoChanged

会议列表更新场景:onConfListInfoChanged

会议结束场景:onConfEndedNotify

会议角色变更场景:onSelfRoleChanged

添加与会者场景:onAttendeeAddedNotify

会中窗口最小化场景:onMeetingPageMinimizedNotify

方法定义

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);

相关文档