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.
var isStopped = RTCRtpTransceiver.stopped;
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
.
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCRtpTransceiver.stopped' in that specification. | Candidate Recommendation |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | No | ? | 59 | No | No | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | No | ? | 59 | No | ? | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/stopped