-
- All Implemented Interfaces:
public interface IUnityAdsLoadListener
-
-
Method Summary
Modifier and Type Method Description abstract voidonUnityAdsAdLoaded(String placementId)Callback triggered when a load request has successfully filled the specified placementId with an ad that is ready to show. abstract voidonUnityAdsFailedToLoad(String placementId, UnityAds.UnityAdsLoadError error, String message)Callback triggered when load request has failed to load an ad for a requested placement. -
-
Method Detail
-
onUnityAdsAdLoaded
abstract void onUnityAdsAdLoaded(String placementId)
Callback triggered when a load request has successfully filled the specified placementId with an ad that is ready to show.
- Parameters:
placementId- Placement, as defined in Unity Ads admin tools
-
onUnityAdsFailedToLoad
abstract void onUnityAdsFailedToLoad(String placementId, UnityAds.UnityAdsLoadError error, String message)
Callback triggered when load request has failed to load an ad for a requested placement.
- Parameters:
placementId- Placement, as defined in Unity Ads admin toolserror- Error code related to the error See: com.unity3d.ads.UnityAds.UnityAdsLoadErrormessage- Human-readable error message
-
-
-
-