Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

RTCPeerConnection: iceGatheringState property

BaselineWidely available

TheiceGatheringState read-only property of theRTCPeerConnection interface returns a string that describes the overall ICE gathering state for this connection.This lets you detect, for example, when collection of ICE candidates has finished.

You can detect when the value of this property changes by watching for an event of typeicegatheringstatechange.

Note thaticeGatheringState represents the overall gathering state of the connection, including everyRTCIceTransport used by everyRTCRtpSender and everyRTCRtpReceiver on the entire connection.This contrasts withRTCIceTransport.gatheringState, which represents the gathering state for a single transport.

Value

The possible values are:

new

The peer connection was just created and hasn't done any networking yet.

gathering

The ICE agent is in the process of gathering candidates for the connection.

complete

The ICE agent has finished gathering candidates.If something happens that requires collecting new candidates, such as a new interface being added or the addition of a new ICE server, the state will revert togathering to gather those candidates.

Example

js
const pc = new RTCPeerConnection();const state = pc.iceGatheringState;

Specifications

Specification
WebRTC: Real-Time Communication in Browsers
# dom-peerconnection-ice-gathering-state

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp