Interface InterstitialAdLoadListener
-
- All Implemented Interfaces:
@MainThread() public interface InterstitialAdLoadListener
A listener for receiving notifications during the lifecycle of an interstitial ad.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdLoaded(InterstitialAd interstitialAd)Notifies when ad is loaded. abstract UnitonAdFailedToLoad(AdRequestError error)Called when an interstitial ad request failed. -
-
Method Detail
-
onAdLoaded
abstract Unit onAdLoaded(InterstitialAd interstitialAd)
Notifies when ad is loaded.
- Parameters:
interstitialAd- interstitial ad, which is ready to be shown.
-
onAdFailedToLoad
abstract Unit onAdFailedToLoad(AdRequestError error)
Called when an interstitial ad request failed.
- Parameters:
error- see errors here AdRequestError
-
-
-
-