RTCIceCandidatePairStats.writable

Obsolete
This 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 writable reports whether or not the connection described by the candidate pair is writable.

Syntax

isWritable = rtcIceCandidatePairStats.writable;

Value

A Boolean value which is true if the connection described by this candidate pair has received acknowledgement of receipt (ACK) for at least one ICE request and that STUN consent hasn't expired.

Note: This property was removed from the specification in early 2017 because you can determine whether or not an incoming ICE request is available to read by checking to see if responsesReceived is greater than 0 and that the time specified by consentExpiredTimestamp has not passed:

if (icpStats.responsesReceived > 0
    && icpStats.consentExpiredTimestamp < performance.now()) {
  /* at least one ICE response has been received */
}

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
writable
Non-standard
Chrome Full support Yes
Notes
Full support Yes
Notes
Notes Chrome does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.
Edge Full support ≤79
Notes
Full support ≤79
Notes
Notes Edge does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.
Firefox Full support 56IE No support NoOpera ? Safari ? WebView Android Full support YesChrome Android Full support Yes
Notes
Full support Yes
Notes
Notes Chrome does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.
Firefox Android Full support 56Opera Android ? Safari iOS ? Samsung Internet Android Full support Yes
Notes
Full support Yes
Notes
Notes Samsung Internet does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.

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.
See implementation notes.
See implementation notes.