Web/API/RTCIceCandidatePairStats/lastRequestTimestamp
The RTCIceCandidatePairStats property lastRequestTimestamp indicates the time at which the most recent STUN request was sent on the described candidate pair.
Syntax
lastRequestTimestamp = rtcIceCandidatePairStats.lastRequestTimestamp;
Value
A DOMHighResTimeStamp object indicating the timestamp at which the last (most recent) STUN request was sent on the connection indicated by the described pair of candidates.
You can use this value in combination with firstRequestTimestamp and requestsSent to compute the average interval between consecutive connectivity checks:
avgCheckInterval = (candidatePairStats.lastRequestTimestamp -
candidatePairStats.firstRequestTimestamp) /
candidatePairStats.requestsSent;
Specifications
| Specification | Status | Comment |
|---|---|---|
| Identifiers for WebRTC's Statistics APIThe definition of 'RTCIceCandidatePairStats.lastRequestTimestamp' in that specification. | Candidate Recommendation | Initial specification. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
lastRequestTimestamp
|
Chrome
No support No |
Edge
No support No |
Firefox
No support No |
IE
No support No |
Opera
? |
Safari
? |
WebView Android
No support No |
Chrome Android
No support No |
Firefox Android
No support No |
Opera Android
? |
Safari iOS
? |
Samsung Internet Android
No support No |
Legend
- No support
- No support
- Compatibility unknown
- Compatibility unknown
RTCIceCandidatePairStats.lastRequestTimestamp by Mozilla Contributors is licensed under CC-BY-SA 2.5.