abstract fun onEventReceived(name: EventName, attributes: EventAttributes): Unit
Called when specific events occur during the meeting. Each event includes attributes of the event.
For more information about the attributes, please refer to EventAttributeName.
One example could be EventName as EventName.meetingStartSucceeded and attributes would be MutableMap of EventAttributeName and it's value.
name
- : EventName - name of meeting event
: EventAttributes - attributes of meeting event
NOTE: all callbacks will be called on main thread.