RTCDataChannel.maxPacketLifeTime
The read-only RTCDataChannel
property maxPacketLifeTime
returns the amount of time, in milliseconds, the browser is allowed to take to attempt to transmit a message, as set when the data channel was created, or null
. This limits how long the browser can continue to attempt to transmit and retransmit the message before giving up.
Syntax
var lifetime = aDataChannel.maxPacketLifeTime;
Value
The number of milliseconds over which the browser may continue to attempt to transmit the message until it either succeeds or gives up. If not set when RTCPeerConnection.createDataChannel()
was called to create the data channel, this value is null
.
Example
// TBD
Specifications
Specification |
---|
WebRTC 1.0: Real-Time Communication Between Browsers (WebRTC 1.0) # dom-datachannel-maxpacketlifetime |
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 | |
maxPacketLifeTime |
56 |
79 |
62 |
No |
43 |
11 |
56 |
56 |
62 |
43 |
11 |
6.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel/maxPacketLifeTime