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
BCD tables only load in the browser