MeetingEventListener Class
using MeetingEventListener Class
The MeetingEventListener Class is responsible for listening to all the events that are related to Meeting Class.
Listeners
__listeners
onMeetingJoined()
voidonMeetingLeft()
voidonParticipantJoined(_ participant: Participant)
voidonParticipantLeft(_ participant: Participant)
void
Listeners
Example
Example of onParticipantJoined()
extension MeetingViewController: MeetingEventListener {
func onParticipantJoined(_ participant: Participant) {
// Display participant on grid
}
}
Got a Question? Ask us on discord

