RTCDataChannel: close event - Web APIs 编辑
The close
event is sent to the onclose
event handler on an RTCDataChannel
instance when the data transport being used for the data channel has closed. Before any further data can be transferred using RTCDataChannel
, a new data channel instance must be created.
Bubbles | No |
---|---|
Cancelable | No |
Interface | Event |
Event handler property | RTCDataChannel.onclose |
Examples
This example sets up a handler for the close
event for the RTCDataChannel
named dc
; its responsibility in this example is to update user interface elements to reflect that there is no longer an ongoing call, and to allow a new call to be started.
dc.addEventListener("close", ev => {
messageInputBox.disabled = true;
sendButton.disabled = true;
connectButton.disabled = false;
disconnectButton.disabled = true;
}, false);
All this code does in response to receiving the close
event is to disable an input box and its "Send" button, and to enable the button used to start a call (while disabling the one that ends a call).
You can also use the onclose
event handler property to set a handler for close
events:
dc.onclose = ev => {
messageInputBox.disabled = true;
sendButton.disabled = true;
connectButton.disabled = false;
disconnectButton.disabled = true;
}
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'close' in that specification. | Candidate Recommendation | Initial specification. |
Browser compatibility
BCD tables only load in the browser
See also
- WebRTC API
- A simple RTCDataChannel example
- Related events:
open
,message
, anderror
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论