RTCRtpTransceiver.stopped
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The read-only stopped
property on the RTCRtpTransceiver
interface indicates whether or not the transceiver's associated sender and receiver have both been stopped.
The transceiver is stopped if the stop()
method has been called or if a change to either the local or the remote description has caused the transceiver to be stopped for some reason.
Note: This property is deprecated and will be removed in the future. Instead, look at the value of currentDirection
. Its value is stopped
if the transceiver has stopped.
Syntax
var isStopped = RTCRtpTransceiver.stopped;
Value
A Boolean value which is true
if the transceiver's sender
will no longer send data, and its receiver
will no longer receive data. If either or both are still at work, the result is false
.
Usage notes
Specifications
This feature is not part of any current specification. It is no longer on track to become a standard.
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 | |
stopped |
69 |
No |
59 |
No |
No |
11 |
69 |
69 |
59 |
No |
11 |
10.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/RTCRtpTransceiver/stopped