Skip to content

ParticipantNetworkQualityChangedEvent

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



getParticipant()

Description

Getter for the participant field.

Arguments

  • none

Returns

Participant - The value of the participant field, which represents the participant whose network quality has changed.

Example

ParticipantNetworkQualityEventListener participantNetworkQualityEventListener = participantNetworkQualityChangedEvent -> {
    Participant participant = participantNetworkQualityChangedEvent.getParticipant();
};



getNetworkQuality()

Description

Getter for the networkQuality field.

Arguments

  • none

Returns

NetworkQuality - The value of the networkQuality field, which represents the quality of the participant's network.

Example

ParticipantNetworkQualityEventListener participantNetworkQualityEventListener = participantNetworkQualityChangedEvent -> {
    NetworkQuality networkQuality = participantNetworkQualityChangedEvent.getNetworkQuality();
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally