WebTransportDatagramDuplexStream: incomingMaxAge 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 in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Web Workers.
The incomingMaxAge
property of the WebTransportDatagramDuplexStream
interface gets or sets the maximum age for incoming datagrams, in milliseconds.
Value
A number, or null
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 incomingMaxAge
datagrams.incomingMaxAge = 2000;
// get incomingMaxAge
console.log(datagrams.incomingMaxAge);
}
Specifications
Specification |
---|
WebTransport # dom-webtransportdatagramduplexstream-incomingmaxage |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
incomingMaxAge |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
- User must explicitly enable this feature.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.