Package com.yandex.mobile.ads.nativeads
Interface NativeBulkAdLoadListener
-
- All Implemented Interfaces:
@MainThread() public interface NativeBulkAdLoadListener
Interface that is implemented to determine when the loading of bulk ad request has completed or failed.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdsLoaded(List<NativeAd> nativeAds)Notifies when native ads are loaded. abstract UnitonAdsFailedToLoad(AdRequestError error)Called when a slider ad request failed. -
-
Method Detail
-
onAdsLoaded
@JvmSuppressWildcards() abstract Unit onAdsLoaded(List<NativeAd> nativeAds)
Notifies when native ads are loaded.
- Parameters:
nativeAds- List of ads, which is ready to be bound to view.
-
onAdsFailedToLoad
abstract Unit onAdsFailedToLoad(AdRequestError error)
Called when a slider ad request failed.
- Parameters:
error- see errors here AdRequestError
-
-
-
-