This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The read-only RTCDataChannel
property ordered
indicates whether or not the data channel guarantees in-order delivery of messages; the default is true
, which indicates that the data channel is indeed ordered. This is set when the RTCDataChannel
is created, by setting the ordered
property on the RTCDataChannelInit
object passed as RTCPeerConnection.createDataChannel()
's options
parameter.
var ordered = aDataChannel.ordered;
A Boolean
value which is true
if in-order delivery is guaranteed and is otherwise false
.
var pc = new RTCPeerConnection(); var dc = pc.createDataChannel("my channel"); if (!dc.ordered) { // Handle unordered messaging }
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCDataChannel.ordered' in that specification. | Candidate Recommendation | Initial specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 56 | ? | No | No | 43 | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 56 | 56 | ? | No | 43 | ? | 6.0 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel/ordered