-
Notifications
You must be signed in to change notification settings - Fork 2
ParticipantUnmutedEvent
Lejla Solak edited this page Feb 10, 2025
·
3 revisions
Getter for the participant
field.
none
-
Participant
- The value of theparticipant
field, which represents the participant that has been unmuted.
RoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
@Override
public void onParticipantUnmuted(ParticipantUnmutedEvent participantUnmutedEvent) {
Participant participant = participantUnmutedEvent.getParticipant();
}
};