public interface Participant
Room
.Modifier and Type | Method and Description |
---|---|
List<AudioTrackPublication> |
getAudioTracks()
Returns
AudioTrackPublication s of participant. |
List<DataTrackPublication> |
getDataTracks()
Returns
DataTrackPublication s of participant. |
String |
getIdentity()
Returns participant identity.
|
NetworkQualityLevel |
getNetworkQualityLevel()
Returns the participant's Network Quality Level.
|
String |
getSid()
Returns unique identifier of a participant.
|
List<VideoTrackPublication> |
getVideoTracks()
Returns
VideoTrackPublication s of participant. |
String getSid()
String getIdentity()
NetworkQualityLevel getNetworkQualityLevel()
This property represents the quality of a Participant's connection in a Room. This value
may not be immediately available, and, in some cases, it's impossible to calculate it. In
these instances, getNetworkQualityLevel()
will return NetworkQualityLevel.NETWORK_QUALITY_LEVEL_UNKNOWN
. Calling this API in a Peer-to-Peer Room
will always return NetworkQualityLevel.NETWORK_QUALITY_LEVEL_UNKNOWN
. This is part of
the Network Quality API and must be enabled by enabling the enableNetworkQuality
option in ConnectOptions
.
List<AudioTrackPublication> getAudioTracks()
AudioTrackPublication
s of participant.List<VideoTrackPublication> getVideoTracks()
VideoTrackPublication
s of participant.List<DataTrackPublication> getDataTracks()
DataTrackPublication
s of participant.5.13.0