web api interface
RTCDataChannelEvent
The RTCDataChannelEvent interface
represents an event related to a specific RTCDataChannel.
Constructor
RTCDataChannelEvent()- : Creates a new
RTCDataChannelEvent.
- : Creates a new
Instance properties
Also inherits properties from Event.
channelRead only- : Returns the
RTCDataChannelassociated with the event.
- : Returns the
Examples
In this example, the datachannel event handler is set up to save the data channel reference and set up handlers for the events which need to be monitored. The channel property provides the RTCDataChannel representing the connection to the other peer.
pc.ondatachannel = (event) => {
inboundDataChannel = event.channel;
inboundDataChannel.onmessage = handleIncomingMessage;
inboundDataChannel.onopen = handleChannelOpen;
inboundDataChannel.onclose = handleChannelClose;
};
See A simple RTCDataChannel sample for another, more complete, example of how to use data channels.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- WebRTC
RTCDataChannel- A simple RTCDataChannel sample
RTCPeerConnection(the target interface fordatachannelevents)