-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
Currently Section 2.7 states (in the definition of RTCIceGathererState):
"RTCIceGatherer objects gather upon construction"
This creates an issue for WebRTC 1.0 shims, which have to resort to tricks (such as waiting to attach the onlocalcandidate event handler until setLocalDescription() is called), so as to avoid ICE candidate events.
To enable better control it would be desirable to add a gather method to the RTCIceGatherer, as follows:
partial interface RTCIceGatherer {
void start (optional RTCIceGatherOptions options);
};
Reactions are currently unavailable