RTCDataChannel.reliable

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

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 read-only RTCDataChannel property reliable indicates whether or not the data channel is reliable.

This property is obsolete. Use RTCDataChannel.ordered instead in any new code, and update existing code as soon as possible.

Syntax

JavaScript
var reliable = aDataChannel.reliable;

Value

true if the RTCDataChannel's connection is reliable; false if it isn't.

Example

JavaScript
// TBD

Specifications

No longer part of any specification.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? 22 (22) No support No support No support
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support No support ? 22.0 (22) No support No support No support

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/rtcdatachannel/reliable

Experimental Obsolete Property Read-only reliable RTCDataChannel WebRTC