-
Notifications
You must be signed in to change notification settings - Fork 2
ParticipantNetworkQualityChangedEvent
Lejla Solak edited this page Feb 10, 2025
·
2 revisions
Getter for the participant
field.
none
Participant
- The value of the participant
field, which represents the participant whose network
quality has changed.
ParticipantNetworkQualityEventListener participantNetworkQualityEventListener = participantNetworkQualityChangedEvent -> {
Participant participant = participantNetworkQualityChangedEvent.getParticipant();
};
Getter for the networkQuality
field.
none
NetworkQuality
- The value of the networkQuality
field, which represents the quality of the
participant's network.
ParticipantNetworkQualityEventListener participantNetworkQualityEventListener = participantNetworkQualityChangedEvent -> {
NetworkQuality networkQuality = participantNetworkQualityChangedEvent.getNetworkQuality();
};