-
public class StatsReportStats report contains stats for all the media tracks that exist in peer connection.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringpeerConnectionIdprivate List<LocalAudioTrackStats>localAudioTrackStatsprivate List<LocalVideoTrackStats>localVideoTrackStatsprivate List<RemoteAudioTrackStats>remoteAudioTrackStatsprivate List<RemoteVideoTrackStats>remoteVideoTrackStatsprivate List<IceCandidatePairStats>iceCandidatePairStatsprivate List<IceCandidateStats>iceCandidateStats
-
Method Summary
Modifier and Type Method Description StringgetPeerConnectionId()Returns the id of peer connection related to this report. List<LocalAudioTrackStats>getLocalAudioTrackStats()Returns stats for all local audio tracks in the peer connection. List<LocalVideoTrackStats>getLocalVideoTrackStats()Returns stats for all local video tracks in the peer connection. List<RemoteAudioTrackStats>getRemoteAudioTrackStats()Returns stats for all remote audio tracks in the peer connection. List<RemoteVideoTrackStats>getRemoteVideoTrackStats()Returns stats for all remote video tracks in the peer connection. List<IceCandidatePairStats>getIceCandidatePairStats()Returns stats for all ice candidate pairs in the peer connection. List<IceCandidateStats>getIceCandidateStats()Returns stats for individual ice candidates in the peer connection -
-
Method Detail
-
getPeerConnectionId
@NonNull() String getPeerConnectionId()
Returns the id of peer connection related to this report.
-
getLocalAudioTrackStats
@NonNull() List<LocalAudioTrackStats> getLocalAudioTrackStats()
Returns stats for all local audio tracks in the peer connection.
-
getLocalVideoTrackStats
@NonNull() List<LocalVideoTrackStats> getLocalVideoTrackStats()
Returns stats for all local video tracks in the peer connection.
-
getRemoteAudioTrackStats
@NonNull() List<RemoteAudioTrackStats> getRemoteAudioTrackStats()
Returns stats for all remote audio tracks in the peer connection.
-
getRemoteVideoTrackStats
@NonNull() List<RemoteVideoTrackStats> getRemoteVideoTrackStats()
Returns stats for all remote video tracks in the peer connection.
-
getIceCandidatePairStats
@NonNull() List<IceCandidatePairStats> getIceCandidatePairStats()
Returns stats for all ice candidate pairs in the peer connection.
-
getIceCandidateStats
@NonNull() List<IceCandidateStats> getIceCandidateStats()
Returns stats for individual ice candidates in the peer connection
-
-
-
-