public static interface ManagedConsent.ManagedConsentDelegate
| Modifier and Type | Method and Description |
|---|---|
void |
managedConsentCMPFailedToLoad(ManagedConsent managedConsent,
String error)
Notifies that the used
CMP failed to load. |
void |
managedConsentCMPFailedToShow(ManagedConsent managedConsent,
String error)
Notifies that the used
CMP failed to show. |
void |
managedConsentCMPFinished(ManagedConsent.ManagedConsentState state)
Notifies that the used
CMP has finished updating consent. |
void |
managedConsentNeedsUserInterface(ManagedConsent managedConsent)
Notifies that
ManagedConsent needs to show a consent dialog. |
void managedConsentNeedsUserInterface(ManagedConsent managedConsent)
ManagedConsent needs to show a consent dialog. After receiving this notification, you should pause your application and call the ManagedConsent.showIfNeeded(Activity) method.managedConsent - The ManagedConsent instance that requests UI.void managedConsentCMPFinished(ManagedConsent.ManagedConsentState state)
CMP has finished updating consent.state - The ManagedConsent.ManagedConsentState informing about consent given by the user.void managedConsentCMPFailedToLoad(ManagedConsent managedConsent, String error)
CMP failed to load.managedConsent - @param managedConsent The ManagedConsent instance.error - The description of what went wrongvoid managedConsentCMPFailedToShow(ManagedConsent managedConsent, String error)
CMP failed to show.managedConsent - @param managedConsent The ManagedConsent instance.error - The description of what went wrong