Package com.yandex.mobile.ads.instream
Interface InstreamAdLoadListener
-
- All Implemented Interfaces:
@MainThread() public interface InstreamAdLoadListener
Class that is implemented to determine when the Instream ads loading has completed or failed.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonInstreamAdLoaded(InstreamAd instreamAd)Notifies that InstreamAd was loaded. abstract UnitonInstreamAdFailedToLoad(String reason)Notifies that InstreamAd failed to load. -
-
Method Detail
-
onInstreamAdLoaded
abstract Unit onInstreamAdLoaded(InstreamAd instreamAd)
Notifies that InstreamAd was loaded.
- Parameters:
instreamAd- InstreamAd Result of successful response.
-
onInstreamAdFailedToLoad
abstract Unit onInstreamAdFailedToLoad(String reason)
Notifies that InstreamAd failed to load.
- Parameters:
reason- Reason describing problem encountered while loading InstreamAd.
-
-
-
-