Package com.opentok.android
Class PublisherKit.PublisherAudioStats
java.lang.Object
com.opentok.android.PublisherKit.PublisherAudioStats
- Enclosing class:
PublisherKit
Defines audio statistics for a publisher.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionlong
The total number of audio bytes sent to the subscriber (or to the OpenTok Media Router).long
The total number of audio packets that did not reach the subscriber (or the OpenTok Media Router).long
The total number of audio packets sent to the subscriber (or to the OpenTok Media Router).The connection ID of the client subscribing to the stream.double
The timestamp, in milliseconds since the Unix epoch, from which the cumulative totals started accumulating.The subscriber ID of the client subscribing to the stream (in a relayed session).double
The timestamp, in milliseconds since the Unix epoch, for when these stats were gathered. -
Method Summary
-
Field Details
-
connectionId
The connection ID of the client subscribing to the stream. -
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 audioPacketsLostThe total number of audio packets that did not reach the subscriber (or the OpenTok Media Router). -
audioPacketsSent
public long audioPacketsSentThe total number of audio packets sent to the subscriber (or to the OpenTok Media Router). -
audioBytesSent
public long audioBytesSentThe total number of audio bytes sent to the subscriber (or to the OpenTok Media Router). -
timeStamp
public double timeStampThe timestamp, in milliseconds since the Unix epoch, for when these stats were gathered. -
startTime
public double startTimeThe timestamp, in milliseconds since the Unix epoch, from which the cumulative totals started accumulating.
-