RTCPeerConnection.oniceconnectionstatechange - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The RTCPeerConnection.oniceconnectionstatechange
property is an event handler which specifies a function to be called when the iceconnectionstatechange
event is fired on an RTCPeerConnection
instance. This happens when the state of the connection's ICE agent, as represented by the iceConnectionState
property, changes.
Syntax
RTCPeerConnection.oniceconnectionstatechange = eventHandler;
Value
This event handler can be set to function which is passed a single input parameter: an Event
object describing the iceconnectionstatechange
event which occurred. Your code can look at the value of RTCPeerConnection.iceConnectionState
to determine what the new state is.
Example
The example below watches the state of the ICE agent for a failure or unexpected closure and takes appropriate action, such as presenting an error message or attempting to restart the ICE agent.
pc.oniceconnectionstatechange = function(event) {
if (pc.iceConnectionState === "failed" ||
pc.iceConnectionState === "disconnected" ||
pc.iceConnectionState === "closed") {
// Handle the failure
}
};
Of course, "disconnected" and "closed" don't necessarily indicate errors; these can be the result of normal ICE negotiation, so be sure to handle these properly (if at all).
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCPeerConnection.oniceconnectionstatechange' in that specification. | Candidate Recommendation | Initial specification. |
Browser compatibility
BCD tables only load in the browser
See also
- The
iceconnectionstatechange
event and its type,Event
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论