Package com.twilio.voice
Class LocalTrackStats
- java.lang.Object
-
- com.twilio.voice.BaseTrackStats
-
- com.twilio.voice.LocalTrackStats
-
- Direct Known Subclasses:
LocalAudioTrackStats
public abstract class LocalTrackStats extends BaseTrackStats
-
-
Field Summary
Fields Modifier and Type Field Description long
bytesSent
Total number of bytes sent for this SSRCint
packetsSent
Total number of RTP packets sent for this SSRClong
roundTripTime
Estimated round trip time for this SSRC based on the RTCP timestamps.-
Fields inherited from class com.twilio.voice.BaseTrackStats
codec, packetsLost, ssrc, timestamp, trackId
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
LocalTrackStats(java.lang.String trackId, int packetsLost, java.lang.String codec, java.lang.String ssrc, double timestamp, long bytesSent, int packetsSent, long roundTripTime)
-
-
-
Field Detail
-
bytesSent
public final long bytesSent
Total number of bytes sent for this SSRC
-
packetsSent
public final int packetsSent
Total number of RTP packets sent for this SSRC
-
roundTripTime
public final long roundTripTime
Estimated round trip time for this SSRC based on the RTCP timestamps. Measured in milliseconds.
-
-