RTCPeerConnection.onicegatheringstatechange - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The RTCPeerConnection.onicegatheringstatechange
property is an EventHandler
which specifies a function to be called when the icegatheringstatechange
event is sent to an RTCPeerConnection
instance. This happens when the ICE gathering state—that is, whether or not the ICE agent is actively gathering candidates—changes.
You don't need to watch for this event unless you have specific reasons to want to closely monitor the state of ICE gathering.
Syntax
RTCPeerConnection.onicegatheringstatechange = eventHandler;
Value
A function you provide which is passed a single parameter: an Event
object containing the icegatheringstatechange
event. You can determine the new state of ICE gathering by looking at the value of the RTCPeerConnection.iceGatheringState
property.
Example
This example updates status information presented to the user to let them know what's happening by examining the current value of the iceGatheringState
property each time it changes and changing the contents of a status display based on the new information.
The status is presented as text in a <div>
element:
<div id="iceStatus"></div>
The actual event handler looks like this:
pc.onicegatheringstatechange = function() {
let label = "Unknown";
switch(pc.iceGatheringState) {
case "new":
case "complete":
label = "Idle";
break;
case "gathering":
label = "Determining route";
break;
}
document.getElementById("iceStatus").innerHTML = label;
}
Specifications
Specification | Status | Comment |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers The definition of 'RTCPeerConnection.onicegatheringstatechange' in that specification. | Candidate Recommendation | Initial specification. |
Browser compatibility
BCD tables only load in the browser
See also
- The
icegatheringstatechange
event and its type,Event
. RTCPeerConnection.iceGatheringState
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论