Package org.kurento.client
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
ModifierConstructorDescriptionprotected
Default 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 TypeMethodDescriptionlong
get Total number of bytes received for this SSRC.double
get Packet Jitter measured in seconds for this SSRC.long
get Total number of RTP packets received for this SSRC.void
setBytesReceived
(long bytesReceived) set Total number of bytes received for this SSRC.void
setJitter
(double jitter) set Packet Jitter measured in seconds for this SSRC.void
setPacketsReceived
(long packetsReceived) set Total number of RTP packets received for this SSRC.Methods inherited from class org.kurento.client.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, setTransportId
Methods inherited from class org.kurento.client.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.
-