-
- All Implemented Interfaces:
-
io.cloudx.sdk.CloudXAd,io.cloudx.sdk.CloudXDestroyable,io.cloudx.sdk.internal.ads.LastErrorEvent
public interface CXAdapterDelegate implements LastErrorEvent, CloudXDestroyable, CloudXAd
-
-
Method Summary
Modifier and Type Method Description abstract Booleanload()abstract StateFlow<CloudXError>getLastErrorEvent()abstract CloudXAdFormatgetAdFormat()The ad format (BANNER, MREC, INTERSTITIAL, REWARDED). abstract StringgetAdUnitId()The ad unit ID. abstract StringgetPlacement()Optional placement identifier set via setPlacement(). abstract StringgetNetworkName()Name of the ad network that won the auction. abstract StringgetNetworkPlacement()Network-specific placement ID, if available. abstract DoublegetRevenue()Impression-level revenue in USD. -
-
Method Detail
-
getLastErrorEvent
abstract StateFlow<CloudXError> getLastErrorEvent()
-
getAdFormat
abstract CloudXAdFormat getAdFormat()
The ad format (BANNER, MREC, INTERSTITIAL, REWARDED).
-
getAdUnitId
abstract String getAdUnitId()
The ad unit ID.
-
getPlacement
abstract String getPlacement()
Optional placement identifier set via setPlacement().
-
getNetworkName
abstract String getNetworkName()
Name of the ad network that won the auction.
-
getNetworkPlacement
abstract String getNetworkPlacement()
Network-specific placement ID, if available.
-
getRevenue
abstract Double getRevenue()
Impression-level revenue in USD.
-
-
-
-