Package com.castlabs.android.player
Interface DrmLicenseLoader.Callback
-
- Enclosing class:
- DrmLicenseLoader
public static interface DrmLicenseLoader.Callback
The callback interface for license loader tasks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onError(CastlabsPlayerException e)
Called when an error occurs during license loadingvoid
onLicenseLoaded()
Called when the license was loaded successfullyvoid
onLicenseRemoved()
Called when the license was removed from internal storage successfully
-
-
-
Method Detail
-
onError
void onError(CastlabsPlayerException e)
Called when an error occurs during license loading- Parameters:
e
- the error
-
onLicenseLoaded
void onLicenseLoaded()
Called when the license was loaded successfully
-
onLicenseRemoved
void onLicenseRemoved()
Called when the license was removed from internal storage successfully
-
-