-
Notifications
You must be signed in to change notification settings - Fork 2
ParticipantDisconnectedEvent
Lejla Solak edited this page Feb 10, 2025
·
1 revision
Getter for the participant field.
none
-
Participant- The value of theparticipantfield, which represents the participant that has been disconnected.
RoomCallEventListener roomCallEventListener = new DefaultRoomCallEventListener() {
@Override
public void onParticipantDisconnected(ParticipantDisconnectedEvent participantDisconnectedEvent) {
Participant participant = participantDisconnectedEvent.getParticipant();
}
};