0
  1. RTCPeerConnection.setRemoteDescription()返回一个 Promise,一旦连接的 remoteDescription 的值成功更改,该 Promise 就会解析。在调用RTCPeerConnection.addIceCandidate()之前,我是否需要等待此 Promise 成功解决 ?

  2. 此外RTCPeerConnection.addIceCandidate(),返回一个 Promise,当 ICE 代理成功地将候选者添加到远程对等点的描述中时,该 Promise 就实现了。在通过添加下一个可用候选人之前,我应该等待此 Promise 成功解决,RTCPeerConnection.addIceCandidate()还是可以并行添加 IceCandidates?

4

1 回答 1

1

这不是必需的,请参阅规范中确保按顺序执行的操作链的描述。

于 2020-11-07T17:06:41.633 回答