eligibleParticipants, returns the array of participants, who can be sent private messages during a meeting session.
isPrivateChatConnected, returns a boolean value, whether private chat is connected in a meeting session.
isPrivateChatEnabled, returns a boolean value, whether private chat is enabled for a meeting.
unreadCountByParticipant, returns the map of participantGuids and their corresponding unread private message counts in a meeting.
unreadMessageCount, returns the total unread private message count in a meeting.
Allows observing changes to properties. Provide the property which you are interested in and a callback. Whenever the property value changes, you will be notified via the callback.
Usage:
sdk.meetingService.privateChatService.observe("unreadMessageCount", function() {
console.info("unreadMessageCount changed to : ", sdk.meetingService.privateChatService.unreadMessageCount)
});
The name of the property to observe for changes.
on change event for the property.
Generated using TypeDoc
chatHistoryByParticipant, returns the map of participantGuids and corresponding private messages in a meeting. It also includes the participantGuids and the corresponding private messages of participants who've dropped off.