PostMessages for Call Events
Use API to listen to JioMeet events
callStarted and callEnded
We have also added postMessages while joining meeting and while ending the meeting. You can create event listeners following these postMessages:
- callStarted
- callEnded
You can use following event listener to access those post Messages
window.addEventListener("message", (event) => {
console.log(event);
});
Please refer to MDN Docs on postMessages API for more info on using these.
PostMessage for updates to ParticipantList
participantListUpdated;
You can then use the RoomListing API to get the participant list.
UI Ready callback
loadingCompleted;
ChatNotification callback
chatMessageRecieved;
Active User Speaking callback
userVolumeStatus;
data = {
uid: this.localParticipant.uid,
volumeLevel,
};