Class RTCInboundRTPStreamStats
java.lang.Object
org.kurento.client.Stats
org.kurento.client.RTCStats
org.kurento.client.RTCRTPStreamStats
org.kurento.client.RTCInboundRTPStreamStats
Statistics that represents the measurement metrics for the incoming media stream.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDefault private constructor of RTCInboundRTPStreamStats for serialization with JacksonRTCInboundRTPStreamStats(String id, StatsType type, long timestampMillis, String ssrc, String associateStatsId, boolean isRemote, String mediaTrackId, String transportId, String codecId, long firCount, long pliCount, long nackCount, long sliCount, long remb, long packetsLost, double fractionLost, long packetsReceived, long bytesReceived, double jitter) Create a RTCInboundRTPStreamStats -
Method Summary
Modifier and TypeMethodDescriptionlongget Total number of bytes received for this SSRC.doubleget Packet Jitter measured in seconds for this SSRC.longget Total number of RTP packets received for this SSRC.voidsetBytesReceived(long bytesReceived) set Total number of bytes received for this SSRC.voidsetJitter(double jitter) set Packet Jitter measured in seconds for this SSRC.voidsetPacketsReceived(long packetsReceived) set Total number of RTP packets received for this SSRC.Methods inherited from class RTCRTPStreamStats
getAssociateStatsId, getCodecId, getFirCount, getFractionLost, getIsRemote, getMediaTrackId, getNackCount, getPacketsLost, getPliCount, getRemb, getSliCount, getSsrc, getTransportId, setAssociateStatsId, setCodecId, setFirCount, setFractionLost, setIsRemote, setMediaTrackId, setNackCount, setPacketsLost, setPliCount, setRemb, setSliCount, setSsrc, setTransportIdMethods inherited from class Stats
getId, getTimestampMillis, getType, setId, setTimestampMillis, setType
-
Constructor Details
-
RTCInboundRTPStreamStats
protected RTCInboundRTPStreamStats()Default private constructor of RTCInboundRTPStreamStats for serialization with Jackson -
RTCInboundRTPStreamStats
public RTCInboundRTPStreamStats(String id, StatsType type, long timestampMillis, String ssrc, String associateStatsId, boolean isRemote, String mediaTrackId, String transportId, String codecId, long firCount, long pliCount, long nackCount, long sliCount, long remb, long packetsLost, double fractionLost, long packetsReceived, long bytesReceived, double jitter) Create a RTCInboundRTPStreamStats
-
-
Method Details
-
getPacketsReceived
public long getPacketsReceived()get Total number of RTP packets received for this SSRC. -
setPacketsReceived
public void setPacketsReceived(long packetsReceived) set Total number of RTP packets received for this SSRC. -
getBytesReceived
public long getBytesReceived()get Total number of bytes received for this SSRC. -
setBytesReceived
public void setBytesReceived(long bytesReceived) set Total number of bytes received for this SSRC. -
getJitter
public double getJitter()get Packet Jitter measured in seconds for this SSRC. -
setJitter
public void setJitter(double jitter) set Packet Jitter measured in seconds for this SSRC.
-