WebTransportDatagramDuplexStream: outgoingMaxAge-Eigenschaft

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Sicherer Kontext: Diese Funktion ist nur in sicheren Kontexten (HTTPS) in einigen oder allen unterstützenden Browsern verfügbar.

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Die outgoingMaxAge-Eigenschaft des WebTransportDatagramDuplexStream-Interfaces gibt das maximale Alter für ausgehende Datagramme in Millisekunden an oder setzt dieses.

Wert

Eine Zahl oder null, wenn kein maximales Alter festgelegt wurde.

Beispiele

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);
}

Spezifikationen

Specification
WebTransport
# dom-webtransportdatagramduplexstream-outgoingmaxage

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch