WebTransport: ready-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 ready-Eigenschaft des WebTransport-Interfaces gibt ein Promise zurück, das aufgelöst wird, wenn der Transport bereit zur Nutzung ist.

Wert

Ein Promise, das zu undefined aufgelöst wird.

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;

  // ...
}

// ...

async function closeTransport(transport) {
  // Respond to connection closing
  try {
    await transport.closed;
    console.log(`The HTTP/3 connection to ${url} closed gracefully.`);
  } catch (error) {
    console.error(`The HTTP/3 connection to ${url} closed due to ${error}.`);
  }
}

Spezifikationen

Specification
WebTransport
# dom-webtransport-ready

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch