Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Draft
This page is not complete.
The RTCDataChannel.onclosing
property is an
EventHandler
which specifies a function to be called by the browser when
the closing
event is received by the RTCDataChannel
. This is
a simple Event
which indicates that the data channel is being closed,
that is, RTCDataChannel
transitions to "closing" state. For example,
after RTCDataChannel.close()
was called but the
underlying data transport might not have been closed yet.
Syntax
RTCDataChannel.onclosing = function;
Value
A function which the browser will call to handle the closing
event. The
function receives as its sole input parameter the event itself, as an object of type
Event
.
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCDataChannel.onclosing' in that specification. |
Candidate Recommendation | Initial specification. |
Browser compatibility
BCD tables only load in the browser
See also
- WebRTC
RTCDataChannel.onclose
event handler and itsclose
event.RTCDataChannel.onopen
- The
open
event and its type,Event
.