Skip to content

ParticipantUnmutedEvent

Lejla Solak edited this page Feb 10, 2025 · 3 revisions



getParticipant()

Description

Getter for the participant field.

Arguments

  • none

Returns

  • Participant - The value of the participant field, which represents the participant that has been unmuted.

Example

RoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
    @Override
    public void onParticipantUnmuted(ParticipantUnmutedEvent participantUnmutedEvent) {
        Participant participant = participantUnmutedEvent.getParticipant();
    }
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally