Package com.yandex.mobile.ads.appopenad
Interface AppOpenAdEventListener
-
- All Implemented Interfaces:
@MainThread() public interface AppOpenAdEventListener
A listener for receiving notifications during the lifecycle of an app open ad.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdShown()Called when an app open ad has been shown. abstract UnitonAdFailedToShow(AdError adError)Called when an app open ad failed to show. abstract UnitonAdDismissed()Called when an app open ad has been dismissed. abstract UnitonAdClicked()Called when user clicked on the ad. abstract UnitonAdImpression(ImpressionData impressionData)Called when an impression was observed -
-
Method Detail
-
onAdFailedToShow
abstract Unit onAdFailedToShow(AdError adError)
Called when an app open ad failed to show.
-
onAdDismissed
abstract Unit onAdDismissed()
Called when an app open ad has been dismissed.
-
onAdClicked
abstract Unit onAdClicked()
Called when user clicked on the ad.
-
onAdImpression
abstract Unit onAdImpression(ImpressionData impressionData)
Called when an impression was observed
- Parameters:
impressionData-impression level revenue data
-
-
-
-