WebTransportDatagramDuplexStream: outgoingHighWaterMark property
The outgoingHighWaterMark
property of the WebTransportDatagramDuplexStream
interface gets or sets the high water mark for outgoing chunks of data — this is the maximum size, in chunks, that the outgoing WritableStream
's internal queue can reach before it is considered full. See Internal queues and queuing strategies for more information.
Value
Examples
const url = "https://example.com:4999/wt";
async function initTransport(url) {
const transport = new WebTransport(url);
await transport.ready;
const datagrams = transport.datagrams;
datagrams.outgoingHighWaterMark = 20000;
console.log(datagrams.outgoingHighWaterMark);
}
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
outgoingHighWaterMark |
97 |
97 |
114 |
No |
83 |
No |
97 |
97 |
114 |
68 |
No |
18.0 |
See also