WebTransportDatagramDuplexStream: outgoingMaxAge property

Baseline 2026
Newly available

Since March 2026, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

Note: This feature is available in Web Workers.

Thuộc tính outgoingMaxAge của giao diện WebTransportDatagramDuplexStream lấy hoặc đặt thời gian tối đa cho các datagram đi, tính bằng miligiây.

Giá trị

Một số, hoặc null nếu chưa đặt thời gian tối đa.

Ví dụ

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

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

  // The connection can be used once ready fulfills
  await transport.ready;

  const datagrams = transport.datagrams;

  // set outgoingMaxAge
  datagrams.outgoingMaxAge = 2000;

  // get outgoingMaxAge
  console.log(datagrams.outgoingMaxAge);
}

Thông số kỹ thuật

Thông số kỹ thuật
WebTransport
# dom-webtransportdatagramduplexstream-outgoingmaxage

Tương thích trình duyệt

Xem thêm