Package com.castlabs.android.player
Interface PlayerViewLifecycleDelegate.LifecycleListener
-
- All Known Implementing Classes:
MultiControllerPlaylist
,PlaylistController
- Enclosing class:
- PlayerViewLifecycleDelegate
public static interface PlayerViewLifecycleDelegate.LifecycleListener
Callback to receive delegated Lifecycle events. Exposes hook points to add extra logic dependant on the lifecycle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPostDestroy()
void
onPostRelease(boolean backgroundPlayback)
void
onPostResume(PlayerController playerController)
void
onPostStart()
-
-
-
Method Detail
-
onPostStart
void onPostStart()
-
onPostResume
void onPostResume(@NonNull PlayerController playerController)
-
onPostRelease
void onPostRelease(boolean backgroundPlayback)
-
onPostDestroy
void onPostDestroy()
-
-