isChatConnected, returns a boolean value, whether chat is connected in a meeting session.
isChatEnabled, returns a boolean value, whether chat is enabled for a meeting.
unreadMessageCount, returns the count of unread public chats in a meeting session.
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.publicChatService.observe("unreadMessageCount", function() {
console.info("unreadMessageCount changed to : ", sdk.meetingService.publicChatService.unreadMessageCount)
});
The name of the property to observe for changes.
on change event for the property.
Generated using TypeDoc
chatHistory, returns the list of public chats in a call.