RTCDataChannel.maxRetransmits
The read-only RTCDataChannel
property maxRetransmits
returns the maximum number of times the browser should try to retransmit a message before giving up, as set when the data channel was created, or null
, which indicates that there is no maximum. This can only be set when the RTCDataChannel
is created by calling RTCPeerConnection.createDataChannel()
, using the maxRetransmits
field in the specified options
.
Syntax
var tries = aDataChannel.maxRetransmits;
Value
The maximum number of times the browser will try to retransmit a message before giving up, or null
if not set when RTCPeerConnection.createDataChannel()
was called. The default is null
.
Example
// TBD
Specifications
Specification |
---|
WebRTC 1.0: Real-Time Communication Between Browsers (WebRTC 1.0) # dom-datachannel-maxretransmits |
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 | |
maxRetransmits |
30 |
79 |
62 |
No |
17 |
11 |
4.4 |
30 |
62 |
18 |
11 |
2.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/maxRetransmits