Web/API/RTCIceCandidatePairStats/readable

From Get docs

ObsoleteThis feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.


The obsolete RTCIceCandidatePairStats property readable reports whether or not the connection described by the candidate pair has received at least one valid incoming ICE request.

Syntax

isReadable = rtcIceCandidatePairStats.readable;

Value

A Boolean value which is true if the connection described by this candidate pair has received at least one valid ICE request, and is therefore ready to be read from.

Note: This property was removed from the specification in early 2017 because you can determine whether or not the connection is readable by checking to see if requestsReceived is greater than 0:

if (icpStats.requestsReceived > 0) {
  /* at least one ICE request has been received */
}

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

readable

Non-standard'

Chrome

No support No

Edge

No support No

Firefox

Full support 56

IE

No support No

Opera

?

Safari

?

WebView Android

No support No

Chrome Android

No support No

Firefox Android

Full support 56

Opera Android

?

Safari iOS

?

Samsung Internet Android

No support No

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.