RTCPeerConnection.getReceivers()

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The RTCPeerConnection.getReceivers() method returns an array of RTCRtpReceiver objects, each of which represents one RTP receiver. Each RTP receiver manages the reception and decoding of data for a MediaStreamTrack on an RTCPeerConnection

Syntax

var receivers = rtcPeerConnection.getReceivers();

Return value

An array of RTCRtpReceiver objects, one for each track on the connection. The array is empty if there are no RTP receivers on the connection.

The order of the returned RTCRtpReceiver instances is not defined by the specification, and may change from one call to getReceivers() to the next.

Example

tbd

Specifications

Specification Status Comment
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCPeerConnection.getReceivers()' in that specification.
Candidate Recommendation Initial specification.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
getReceiversChrome Full support 59Edge Full support ≤18Firefox Full support 22IE No support NoOpera Full support 46Safari Full support 11WebView Android Full support 59Chrome Android Full support 59Firefox Android Full support 44Opera Android Full support 43Safari iOS Full support YesSamsung Internet Android Full support 6.0

Legend

Full support
Full support
No support
No support

See also