Package com.opentok.android
Class PublisherKit.PublisherAudioStats
- java.lang.Object
 - 
- com.opentok.android.PublisherKit.PublisherAudioStats
 
 
- 
- Enclosing class:
 - PublisherKit
 
public static class PublisherKit.PublisherAudioStats extends java.lang.ObjectDefines audio statistics for a publisher. 
- 
- 
Field Summary
Fields Modifier and Type Field Description longaudioBytesSentThe total number of audio bytes sent to the subscriber (or to the OpenTok Media Router).longaudioPacketsLostThe total number of audio packets that did not reach the subscriber (or the OpenTok Media Router).longaudioPacketsSentThe total number of audio packets sent to the subscriber (or to the OpenTok Media Router).java.lang.StringconnectionIdThe connection ID of the client subscribing to the stream.doublestartTimeThe timestamp, in milliseconds since the Unix epoch, from which the cumulative totals started accumulating.java.lang.StringsubscriberIdThe subscriber ID of the client subscribing to the stream (in a relayed session).doubletimeStampThe timestamp, in milliseconds since the Unix epoch, for when these stats were gathered. 
 - 
 
- 
- 
Field Detail
- 
connectionId
public java.lang.String connectionId
The connection ID of the client subscribing to the stream. 
- 
subscriberId
public java.lang.String subscriberId
The subscriber ID of the client subscribing to the stream (in a relayed session). In a routed session, this is set to an empty string. 
- 
audioPacketsLost
public long audioPacketsLost
The total number of audio packets that did not reach the subscriber (or the OpenTok Media Router). 
- 
audioPacketsSent
public long audioPacketsSent
The total number of audio packets sent to the subscriber (or to the OpenTok Media Router). 
- 
audioBytesSent
public long audioBytesSent
The total number of audio bytes sent to the subscriber (or to the OpenTok Media Router). 
- 
timeStamp
public double timeStamp
The timestamp, in milliseconds since the Unix epoch, for when these stats were gathered. 
- 
startTime
public double startTime
The timestamp, in milliseconds since the Unix epoch, from which the cumulative totals started accumulating. 
 - 
 
 -