RTCPeerConnection.setRemoteDescription()返回一个 Promise,一旦连接的 remoteDescription 的值成功更改,该 Promise 就会解析。在调用RTCPeerConnection.addIceCandidate()之前,我是否需要等待此 Promise 成功解决 ?
此外
RTCPeerConnection.addIceCandidate()
,返回一个 Promise,当 ICE 代理成功地将候选者添加到远程对等点的描述中时,该 Promise 就实现了。在通过添加下一个可用候选人之前,我应该等待此 Promise 成功解决,RTCPeerConnection.addIceCandidate()
还是可以并行添加 IceCandidates?
webrtc - 我应该等待 RTCPeerConnection.setRemoteDescription() 和 RTCPeerConnection.addIceCandidate() 承诺解决吗?
问问题
61 次