RTCDataChannel:ordered 属性

只读的 RTCDataChannel 属性 ordered 指示数据通道是否保证消息按顺序传递;默认值为 true,表示数据通道确实是有序的。当 RTCDataChannel 创建时,通过设置传递给 RTCPeerConnection.createDataChannel()options 参数对象中的 ordered 属性来设置此属性。

一个布尔值,如果保证按顺序传递则为 true,否则为 false

示例

js
const pc = new RTCPeerConnection();
const dc = pc.createDataChannel("my channel");

if (!dc.ordered) {
  // Handle unordered messaging
}

规范

规范
WebRTC:浏览器中的实时通信
# dom-datachannel-ordered

浏览器兼容性

BCD 表格仅在启用了 JavaScript 的浏览器中加载。

另请参阅