public interface IRecordingSessionStatistics
Modifier and Type | Method and Description |
---|---|
long |
attachmentCount()
Returns the count of attachments.
|
long |
attachmentSize()
Returns the total size of attachments.
|
int |
getMeasurementCount()
Returns the count of measurements in the recording.
|
long |
getTimeGranularity()
Returns the time covered by a measurement, in milliseconds.
|
long |
maxTimeJitter()
Returns the greatest time difference between unordered packets.
|
int |
packetCount()
Returns the packet count in the recording.
|
int |
packetCount(int timeSlice)
Returns the count of packets during a given measurement.
|
int |
packetCount(int timeSlice,
String packetType)
Returns the count of packets during a given measurement, for a specfic
packet type.
|
int |
packetCount(String packetType)
Returns the count of packets of a specific type.
|
long |
packetSize()
Returns the total packet size.
|
long |
packetSize(int timeSlice)
Returns the total packet size during a given measurement.
|
long |
packetSize(int timeSlice,
String packetType)
Returns the total size of packets of a specific type, during a given measurement.
|
long |
packetSize(String packetType)
Returns the total size of packets of a specific type.
|
Set<String> |
packetsTypes()
Returns all packet types found in the recording.
|
Set<String> packetsTypes()
long getTimeGranularity()
int getMeasurementCount()
int packetCount()
int packetCount(String packetType)
packetType
- A packet type.int packetCount(int timeSlice)
timeSlice
- The index of the measurement.int packetCount(int timeSlice, String packetType)
timeSlice
- The index of the measurement.packetType
- A packet type.long packetSize()
long packetSize(String packetType)
packetType
- A packet type.long packetSize(int timeSlice)
timeSlice
- The index of the measurement.long packetSize(int timeSlice, String packetType)
timeSlice
- The index of the measurement.packetType
- A packet type.long attachmentCount()
long attachmentSize()
long maxTimeJitter()
0 <= i <= j < packetCount()
, let:
if timestamp(i) > timestamp(j) : jitterTime(i,j) = timestamp(i) - timestamp(j) else : jitterTime(i,j) = 0Then
maxJitterTime = MAX (jitterTime(i,j))
.© Copyright IBM Corp. 2013. All rights reserved.