W3cubDocs

/DOM

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 RTCReceiver instances is not defined by the specification, and may change from one call to getSenders() to the next.

Example

tbd

Specifications

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari
Basic support 59 (Yes) 34 (34) No support No support ?
Feature Android Webview Chrome for Android Edge Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 59 59 (Yes) 34.0 (34) No support No support ?

See also

© 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/RTCPeerConnection/getReceivers