Package com.yandex.mobile.ads.instream
Interface InstreamAdLoadListener
-
public interface InstreamAdLoadListenerClass that is implemented to determine when the Instream ads loading has completed or failed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonInstreamAdFailedToLoad(java.lang.String reason)Notifies thatInstreamAdfailed to load.voidonInstreamAdLoaded(InstreamAd instreamAd)Notifies thatInstreamAdwas loaded.
-
-
-
Method Detail
-
onInstreamAdLoaded
void onInstreamAdLoaded(@NonNull InstreamAd instreamAd)Notifies thatInstreamAdwas loaded.- Parameters:
instreamAd-InstreamAdResult of successful response.
-
onInstreamAdFailedToLoad
void onInstreamAdFailedToLoad(@NonNull java.lang.String reason)Notifies thatInstreamAdfailed to load.- Parameters:
reason- Reason describing problem encountered while loadingInstreamAd.
-
-