Package tvi.webrtc
Interface SdpObserver
-
public interface SdpObserverInterface for observing SDP-related events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCreateFailure(java.lang.String error)Called on error of Create{Offer,Answer}().voidonCreateSuccess(SessionDescription sdp)Called on success of Create{Offer,Answer}().voidonSetFailure(java.lang.String error)Called on error of Set{Local,Remote}Description().voidonSetSuccess()Called on success of Set{Local,Remote}Description().
-
-
-
Method Detail
-
onCreateSuccess
void onCreateSuccess(SessionDescription sdp)
Called on success of Create{Offer,Answer}().
-
onSetSuccess
void onSetSuccess()
Called on success of Set{Local,Remote}Description().
-
onCreateFailure
void onCreateFailure(java.lang.String error)
Called on error of Create{Offer,Answer}().
-
onSetFailure
void onSetFailure(java.lang.String error)
Called on error of Set{Local,Remote}Description().
-
-