Uses of Class
dev.onvoid.webrtc.RTCSessionDescription
Packages that use RTCSessionDescription
-
Uses of RTCSessionDescription in dev.onvoid.webrtc
Methods in dev.onvoid.webrtc that return RTCSessionDescriptionModifier and TypeMethodDescriptionRTCPeerConnection.getCurrentLocalDescription()
Returns the local description that was successfully negotiated the last time the RTCPeerConnection transitioned into the stable state plus any local candidates that have been generated by the ICE Agent since the offer or answer was created.RTCPeerConnection.getCurrentRemoteDescription()
Returns the last remote description that was successfully negotiated the last time the RTCPeerConnection transitioned into the stable state plus any remote candidates that have been supplied via addIceCandidate() since the offer or answer was created.RTCPeerConnection.getLocalDescription()
Returns a pending local description if it is not null, otherwise it returns the current local description.RTCPeerConnection.getPendingLocalDescription()
Returns a local description that is in the process of being negotiated plus any local candidates that have been generated by the ICE Agent since the offer or answer was created.RTCPeerConnection.getPendingRemoteDescription()
Returns a remote description that is in the process of being negotiated, complete with any remote candidates that have been supplied viaRTCPeerConnection.addIceCandidate(dev.onvoid.webrtc.RTCIceCandidate)
since the offer or answer was created.RTCPeerConnection.getRemoteDescription()
Returns a pending remote description if it is not null, otherwise it returns the current remote description.Methods in dev.onvoid.webrtc with parameters of type RTCSessionDescriptionModifier and TypeMethodDescriptionvoid
CreateSessionDescriptionObserver.onSuccess
(RTCSessionDescription description) Receives the generated SDP answer/offer.void
RTCPeerConnection.setLocalDescription
(RTCSessionDescription description, SetSessionDescriptionObserver observer) Instructs the RTCPeerConnection to apply the supplied RTCSessionDescription as the local description.void
RTCPeerConnection.setRemoteDescription
(RTCSessionDescription description, SetSessionDescriptionObserver observer) Instructs the RTCPeerConnection to apply the supplied RTCSessionDescription as the remote offer or answer.