WebTransport:reliability 属性

实验性: 这是一个 实验性技术
在生产环境中使用之前,请仔细查看 浏览器兼容性表

安全上下文: 此功能仅在 安全上下文(HTTPS)中可用,且仅在某些或所有 支持的浏览器 中可用。

注意: 此功能在 Web Workers 中可用。

reliabilityWebTransport 接口的只读属性,用于指示连接是否仅支持可靠传输,或者是否也支持不可靠传输(例如 UDP)。

具有以下值之一的字符串

pending

连接尚未建立。可靠性尚不清楚。

reliable-only

连接仅支持可靠传输。

supports-unreliable

连接同时支持不可靠和可靠传输。

示例

js
const url = "https://example.com:4999/wt";

async function initTransport(url) {
  // Initialize transport connection
  const transport = new WebTransport(url);

  // Once ready fulfils the connection can be used
  // Prior to this the reliability is "pending"
  await transport.ready;

  if (transport.reliability == "reliable-only") {
    // Use connection only with reliable transports
  } else {
    // Use connection with either reliable or unreliable transports.
  }
  // ...
}

规范

规范
WebTransport
# dom-webtransport-reliability

浏览器兼容性

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