-
public interface ISessionManagerListener
-
-
Method Summary
Modifier and Type Method Description abstract UnitonSessionStarted(ICasterSession session, String sessionId)abstract UnitonSessionStartFailed(ICasterSession session, Integer error)abstract UnitonSessionResumed(ICasterSession session, Boolean wasSuspended)abstract UnitonSessionResumeFailed(ICasterSession session, Integer error)abstract UnitonSessionEnding(ICasterSession session)abstract UnitonSessionEnded(ICasterSession session, Integer error)-
-
Method Detail
-
onSessionStarted
abstract Unit onSessionStarted(ICasterSession session, String sessionId)
-
onSessionStartFailed
abstract Unit onSessionStartFailed(ICasterSession session, Integer error)
-
onSessionResumed
abstract Unit onSessionResumed(ICasterSession session, Boolean wasSuspended)
-
onSessionResumeFailed
abstract Unit onSessionResumeFailed(ICasterSession session, Integer error)
-
onSessionEnding
abstract Unit onSessionEnding(ICasterSession session)
-
onSessionEnded
abstract Unit onSessionEnded(ICasterSession session, Integer error)
-
-
-
-