-
- 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 voidonInstreamAdLoaded(@NonNull() InstreamAd instreamAd)Notifies that InstreamAd was loaded. abstract voidonInstreamAdFailedToLoad(@NonNull() String reason)Notifies that InstreamAd failed to load. -
-
Method Detail
-
onInstreamAdLoaded
abstract void onInstreamAdLoaded(@NonNull() InstreamAd instreamAd)
Notifies that InstreamAd was loaded.
- Parameters:
instreamAd- InstreamAd Result of successful response.
-
onInstreamAdFailedToLoad
abstract void onInstreamAdFailedToLoad(@NonNull() String reason)
Notifies that InstreamAd failed to load.
- Parameters:
reason- Reason describing problem encountered while loading InstreamAd.
-
-
-
-