-
- All Implemented Interfaces:
-
io.cloudx.sdk.CloudXDestroyable,io.cloudx.sdk.CloudXFullscreenAd
public interface CloudXInterstitialAd implements CloudXFullscreenAd<CloudXInterstitialListener>
A fullscreen interstitial ad.
Create instances using CloudX.createInterstitial.
-
-
Method Summary
Modifier and Type Method Description abstract CloudXInterstitialListenergetListener()Listener for ad lifecycle events. abstract UnitsetListener(CloudXInterstitialListener listener)Listener for ad lifecycle events. abstract CloudXAdRevenueListenergetRevenueListener()Listener for impression-level revenue events. abstract UnitsetRevenueListener(CloudXAdRevenueListener revenueListener)Listener for impression-level revenue events. abstract BooleangetIsAdReady()Returns whether an ad is loaded and ready to be shown. -
Methods inherited from class io.cloudx.sdk.CloudXInterstitialAd
load, setExtraParameter, show, show, show -
Methods inherited from class io.cloudx.sdk.CloudXFullscreenAd
destroy -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getListener
abstract CloudXInterstitialListener getListener()
Listener for ad lifecycle events.
-
setListener
abstract Unit setListener(CloudXInterstitialListener listener)
Listener for ad lifecycle events.
-
getRevenueListener
abstract CloudXAdRevenueListener getRevenueListener()
Listener for impression-level revenue events.
-
setRevenueListener
abstract Unit setRevenueListener(CloudXAdRevenueListener revenueListener)
Listener for impression-level revenue events.
-
getIsAdReady
abstract Boolean getIsAdReady()
Returns whether an ad is loaded and ready to be shown.
-
-
-
-