W3cubDocs

/Web APIs

RTCDataChannel.stream

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 deprecated read-only RTCDataChannel property stream returns an ID number (between 0 and 65,535) which uniquely identifies the RTCDataChannel. This ID is set at the time the data channel is created, either by the user agent (if RTCDataChannel.negotiated is false) or by the site or app script (if negotiated is true).

Warning: This property has been replaced with the RTCDataChannel.id property. If you have code that uses stream, you will need to update, since browsers have begun to remove support for stream.

Syntax

var stream = aDataChannel.stream;

Value

An unsigned short value (that is, an integer between 0 and 65,535) which uniquely identifies the data channel.

Example

var dataChannel = pc.createDataChannel("SampleChannel");

console.log("Data channel stream ID: " + dataChannel.stream);

Specifications

This feature is not part of any current specification. It is not 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
stream
56
79
No
No
43
No
56
56
No
43
No
6.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/stream