Package com.yandex.mobile.ads.video
Class VideoAdLoader.OnVideoAdLoadedListener
- java.lang.Object
-
- com.yandex.mobile.ads.video.VideoAdLoader.OnVideoAdLoadedListener
-
- Enclosing class:
- VideoAdLoader
public abstract static class VideoAdLoader.OnVideoAdLoadedListener extends java.lang.ObjectClass that is implemented to determine result of video loading request.
-
-
Constructor Summary
Constructors Constructor Description OnVideoAdLoadedListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidonVideoAdFailedToLoad(VideoAdError error)Notifies that video ad request failed.abstract voidonVideoAdLoaded(java.util.List<com.yandex.mobile.ads.video.models.ad.VideoAd> videoAds)Notifies when video ads are loaded.
-
-
-
Method Detail
-
onVideoAdLoaded
public abstract void onVideoAdLoaded(@NonNull java.util.List<com.yandex.mobile.ads.video.models.ad.VideoAd> videoAds)Notifies when video ads are loaded.- Parameters:
videoAds- Result of successful response.
-
onVideoAdFailedToLoad
public abstract void onVideoAdFailedToLoad(@NonNull VideoAdError error)Notifies that video ad request failed.- Parameters:
error- see errors hereVideoAdError
-
-