WebTransportDatagramDuplexStream.incomingMaxAge
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The incomingMaxAge
property of the WebTransportDatagramDuplexStream
interface gets or sets the maximum age for incoming datagrams, in milliseconds.
Note: This feature is available in Web Workers
Value
A number, or null
if no maximum age has been set.
Examples
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 incomingMaxAge
datagrams.incomingMaxAge = 2000;
// get incomingMaxAge
console.log(datagrams.incomingMaxAge);
}
Specifications
Specification |
---|
WebTransport # dom-webtransportdatagramduplexstream-incomingmaxage |
Browser compatibility
BCD tables only load in the browser