-
public interface SetSessionDescriptionObserverCallback interface used to get notified when theRTCPeerConnectionhas successfully set an local or remoteRTCSessionDescriptionby calling eithersetLocalDescriptionorsetRemoteDescription.- Author:
- Alex Andres
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFailure(String error)An error has occurred, causing the RTCPeerConnection to abort the SDP setting procedure.voidonSuccess()The local/remote session description has been successfully set.
-
-
-
Method Detail
-
onSuccess
void onSuccess()
The local/remote session description has been successfully set.
-
onFailure
void onFailure(String error)
An error has occurred, causing the RTCPeerConnection to abort the SDP setting procedure.- Parameters:
error- The error message.
-
-