-
Notifications
You must be signed in to change notification settings - Fork 2
AudioStats
Long getRoundTripTime()
String getCodec()
long getBytesSent()
long getPacketsSent()
long getRetransmittedBytesSent()
long getRetransmittedPacketsSent()
long getBytesReceived()
int getJitter()
int getPacketsLost()
long getPacketsReceived()
Returns the round trip time of the corresponding call. It refers to the time, measured in milliseconds, it takes for a network packet to travel from the sender to the receiver and back.
none
-
Long
- Value of theroundTripTime
field.
Returns the codec being used for encoding and decoding media streams in the corresponding call.
none
-
String
- Value of thecodec
field.
Returns the bytes sent metric of the corresponding call. It refers to the amount of data, measured in bytes, that is transmitted from the sender's end during a specific time interval.
none
-
long
- Value of thebytesSent
field.
Returns the packets sent metric of the corresponding call. It refers to the number of network packets transmitted from the sender's end during a specific time interval.
none
-
long
- Value of thepacketsSent
field.
Returns the retransmitted bytes sent metric of the corresponding call. It refers to the amount of data, measured in bytes, that is retransmitted from the sender's end during a specific time interval.
none
-
long
- Value of theretransmittedBytesSent
field.
Returns the retransmitted packets sent metric of the corresponding call. It refers to the number of network packets retransmitted from the sender's end during a specific time interval.
none
-
long
- Value of theretransmittedPacketsSent
field.
Returns the bytes received metric of the corresponding call. It refers to the amount of data, measured in bytes, that is received at the receiver's end during a specific time interval.
none
-
long
- Value of thebytesReceived
field.
Returns the jitter of the corresponding call. It refers to the deviation in the arrival time of packets during transmission, measured in milliseconds.
none
-
int
- Value of thejitter
field.
Returns the packets lost metric of the corresponding call. It refers to the number of network packets that are lost during transmission from the sender's end to the receiver's end.
none
-
int
- Value of thepacketsLost
field.
Returns the packets received metric of the corresponding call. It refers to the number of network packets received at the receiver's end during a specific time interval.
none
-
long
- Value of thepacketsReceived
field.