Package com.pubmatic.sdk.openwrap.core
Interface POBAdEventListener
-
- All Implemented Interfaces:
public interface POBAdEventListenerThe base ad event listener. It is used to inform the ad server SDK events back to OpenWrap SDK.
-
-
Method Summary
Modifier and Type Method Description abstract POBBidsProvidergetBidsProvider()Returns bids provider abstract voidonAdClick()Call this when the ad server SDK informs about click happened on Ad abstract voidonAdClosed()Call this when the ad server SDK is about to close / collapse an Ad abstract voidonAdOpened()Call this when the ad server SDK is about to open / expand an Ad abstract voidonAdLeftApplication()Notifies the listener whenever current app goes in the background due to user click abstract voidonAdImpression()Call this when the ad server SDK informs about impression happened on Ad. -
-
Method Detail
-
getBidsProvider
@Nullable() abstract POBBidsProvider getBidsProvider()
Returns bids provider
- Returns:
bids provider
-
onAdClick
abstract void onAdClick()
Call this when the ad server SDK informs about click happened on Ad
-
onAdClosed
abstract void onAdClosed()
Call this when the ad server SDK is about to close / collapse an Ad
-
onAdOpened
abstract void onAdOpened()
Call this when the ad server SDK is about to open / expand an Ad
-
onAdLeftApplication
abstract void onAdLeftApplication()
Notifies the listener whenever current app goes in the background due to user click
-
onAdImpression
abstract void onAdImpression()
Call this when the ad server SDK informs about impression happened on Ad. This callback is available from Handler v4.0.0. It is compatible with SDK v3.5.0 onwards.
-
-
-
-