Package ai.nexconn.chat.bridge
Interface RTCNavigationObserver
-
- All Implemented Interfaces:
public interface RTCNavigationObserverRTC navigation event observer.
This interface is for internal RTC module use only. External developers should not call this directly.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonSuccess(String userId)Navigation success callback. UnitonSuccess(String userId, String reason)Navigation success callback with reason. abstract UnitonUpdate(String reason)Navigation update callback. abstract UnitonError(String userId, Integer errorCode)Navigation failure callback. -
-
Method Detail
-
onSuccess
abstract Unit onSuccess(String userId)
Navigation success callback.
- Parameters:
userId- Current user ID
-
onSuccess
Unit onSuccess(String userId, String reason)
Navigation success callback with reason.
- Parameters:
userId- Current user IDreason- Reason description
-
onUpdate
abstract Unit onUpdate(String reason)
Navigation update callback.
- Parameters:
reason- Update reason
-
-
-
-