Non-refreshable object containing the out-of-sequence results.
More...
Non-refreshable object containing the out-of-sequence results.
Definition at line 20523 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::BiggestSequenceNumberGap.Get |
Gets the largest burst of consecutive missing packets for this snapshot.
- Example
This example gets the received out of sequence packet counter
1 $outOfSequenceResult PacketCount.MissingConsecutive.Get
Returns:
10
Definition at line 20533 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::ByteCount.Get |
Gets the current received bytes counter.
- Example
This example gets the received bytes counter
1 $outOfSequenceResult ByteCount.Get
Returns:
100
Definition at line 20543 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Framesize.Max.Get |
Gets the size (in bytes) of the smallest frame received in this snapshot.
- Exceptions
-
CounterUnavailable | When no frames are received, this counter is unavailable |
- Deprecated:
- since 2.6.4, please use Framesize.Maximum.Get instead
- Example
This example gets the largest frame size received in this snapshot.
1 $outOfSequenceResult Framesize.Max.Get
Returns:
100
Definition at line 20562 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Framesize.Maximum.Get |
Gets the size (in bytes) of the largest frame received in this snapshot.
- Since
- 2.6.4
- Example
This example gets the largest frame size received in this snapshot.
1 $outOfSequenceResult Framesize.Maximum.Get
Returns:
100
Definition at line 20574 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Framesize.Min.Get |
Gets the size (in bytes) of the smallest frame received in this snapshot.
- Exceptions
-
CounterUnavailable | When no frames are received, this counter is unavailable |
- Deprecated:
- since 2.6.4, please use Framesize.Minimum.Get instead
- Example
This example gets the smallest frame size received in this snapshot
1 $outOfSequenceResult Framesize.Min.Get
Returns:
100
Definition at line 20588 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Framesize.Minimum.Get |
Gets the size (in bytes) of the smallest frame received in this snapshot.
- Returns
- Since
- 2.6.4
- Example
This example gets the smallest frame size received in this snapshot.
1 $outOfSequenceResult Framesize.Minimum.Get
Returns:
100
Definition at line 20602 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Interval.Duration.Get |
Gets the configured duration of this results snapshot [NS].
- Since
- 2.3.0
- Example
This example gets interval duration of this result snapshot [NS]
1 $outOfSequenceResult Interval.Duration.Get
Returns:
1000000000
Definition at line 20614 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::PacketCount.Get |
Gets the received packet count.
- Example
This example gets the received packet counter
1 $outOfSequenceResult PacketCount.Get
Returns:
100
Definition at line 20624 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::PacketCount.Invalid.Get |
Gets the received packet count for the invalid/corrupted packets.
- Example
This example gets the received invalid packet counter
1 $outOfSequenceResult PacketCount.Invalid.Get
Returns:
10
Definition at line 20634 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::PacketCount.Missing.Get |
Gets the number of missing packets (missing sequence numbers) in this snapshot.
This can be used as an indicator of packet loss.
- Example
This example gets the received out of sequence packet counter
1 $outOfSequenceResult PacketCount.Missing.Get
Returns:
10
Definition at line 20646 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::PacketCount.OutOfSequence.Get |
Gets the received packet count which were out of sequence.
- Example
This example gets the received out of sequence packet counter
1 $outOfSequenceResult PacketCount.OutOfSequence.Get
Returns:
10
Definition at line 20656 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::PacketCount.Valid.Get |
Gets the received packet count which for packets which were not corrupted.
- Example
This example gets the valid packet counter
1 $outOfSequenceResult PacketCount.Valid.Get
Returns:
10
Definition at line 20666 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Timestamp.First.Get |
Gets the timestamp [NS] of the first packet in this snapshot.
- Exceptions
-
CounterUnavailable | When no frames are received, this counter is unavailable |
- Example
This example gets the timestamp [NS] of the first received packet in this snapshot
1 $outOfSequenceResult Timestamp.First.Get
Returns:
1413475037767331530
Definition at line 20683 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Timestamp.Get |
Gets the snapshot timestamp [NS].
- Example
This example gets the snapshot timestamp [NS].
1 $outOfSequenceResult Timestamp.Get
Returns:
1413475070000000000
Definition at line 20693 of file api.tcl.
Rx.OutOfSequence.Basic.ResultData::Timestamp.Last.Get |
Gets the current timestamp [NS] of the last packet in this snapshot.
- Exceptions
-
CounterUnavailable | When no frames are received, this counter is unavailable |
- Example
This example gets the timestamp [NS] of the last received packet in this snapshot
1 $outOfSequenceResult Timestamp.Last.Get
Returns:
1413475071947640170
Definition at line 20705 of file api.tcl.