WebTransportDatagramDuplexStream: outgoingMaxAge property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.
Note: This feature is available inWeb Workers.
TheoutgoingMaxAge property of theWebTransportDatagramDuplexStream interface gets or sets the maximum age for outgoing datagrams, in milliseconds.
In this article
Value
A number, ornull if no maximum age has been set.
Examples
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);}Specifications
| Specification |
|---|
| WebTransport> # dom-webtransportdatagramduplexstream-outgoingmaxage> |