-
public interface RTCDtlsTransportObserverReceives events from anRTCDtlsTransport.- Author:
- Alex Andres
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(String error)An error has occurred, causing the transport to go to theFAILEDstate.voidonStateChange(RTCDtlsTransportState info)The transport state has changed.
-
-
-
Method Detail
-
onStateChange
void onStateChange(RTCDtlsTransportState info)
The transport state has changed.- Parameters:
info- The information about the state of the transport.
-
onError
void onError(String error)
An error has occurred, causing the transport to go to theFAILEDstate.- Parameters:
error- The error message.
-
-