Package com.pubmatic.sdk.common.ui
Interface POBInterstitialRendererListener
-
- All Implemented Interfaces:
@MainThread() public interface POBInterstitialRendererListener
POBInterstitialRendererListener is an interface having the callback events which will be invoked on rendering event of HTML view.
-
-
Method Summary
Modifier and Type Method Description abstract voidonAdRender(POBAdDescriptor descriptor)Notifies the success event of the HTML view rendering abstract voidonAdRenderingFailed(@NonNull() POBError error)Notifies the failure cause of the HTML view rendering abstract voidonAdClicked()Notifies the click event on the rendered HTML view abstract voidonAdInteractionStarted()Notifies the interaction start event on the rendered HTML view abstract voidonAdInteractionStopped()Notifies the interaction stop event on the rendered HTML view abstract voidonAdUnload()Notifies the unload event on the rendered HTML view abstract voidonLeavingApplication()Notifies the application leave event on the rendered HTML view abstract voidonAdExpired()Notifies the expired event on the rendered HTML view abstract voidonRenderProcessGone()Notifies rendering process terminated. abstract voidonAdImpression()Notifies ad impression -
-
Method Detail
-
onAdRender
abstract void onAdRender(POBAdDescriptor descriptor)
Notifies the success event of the HTML view rendering
- Parameters:
descriptor- POBAdDescriptor object for Ad rendering
-
onAdRenderingFailed
abstract void onAdRenderingFailed(@NonNull() POBError error)
Notifies the failure cause of the HTML view rendering
- Parameters:
error- Error object with failure cause
-
onAdClicked
abstract void onAdClicked()
Notifies the click event on the rendered HTML view
-
onAdInteractionStarted
abstract void onAdInteractionStarted()
Notifies the interaction start event on the rendered HTML view
-
onAdInteractionStopped
abstract void onAdInteractionStopped()
Notifies the interaction stop event on the rendered HTML view
-
onAdUnload
abstract void onAdUnload()
Notifies the unload event on the rendered HTML view
-
onLeavingApplication
abstract void onLeavingApplication()
Notifies the application leave event on the rendered HTML view
-
onAdExpired
abstract void onAdExpired()
Notifies the expired event on the rendered HTML view
-
onRenderProcessGone
abstract void onRenderProcessGone()
Notifies rendering process terminated.
-
onAdImpression
abstract void onAdImpression()
Notifies ad impression
-
-
-
-