Package com.pubmatic.sdk.video.player
Interface POBEndCardViewListener
-
- All Implemented Interfaces:
public interface POBEndCardViewListenerAn interface to notify the End card events
-
-
Method Summary
Modifier and Type Method Description abstract UnitonLoad()Notifies when Icon is loaded abstract UnitonClick(String url, Boolean isClickEventExpected)Notifies when Icon is about to click abstract UnitonError(POBVastError error)Notifies when Icon is failed to load the resource abstract UnitonLearnMoreClick()Notifies when Learn More button is about to click abstract UnitonEndCardWillLeaveApp()Notifies app leave for end card abstract UnitonEmptyAreaClick()Notifies when the EndCard is about to click abstract UnitonClose()Notifies when EndCard is about to close abstract UnitonForward()Notifies when EndCard is skipped -
-
Method Detail
-
onClick
abstract Unit onClick(String url, Boolean isClickEventExpected)
Notifies when Icon is about to click
- Parameters:
url- the url which gets called on click of Icon
-
onError
abstract Unit onError(POBVastError error)
Notifies when Icon is failed to load the resource
- Parameters:
error- the error with specific error info
-
onLearnMoreClick
abstract Unit onLearnMoreClick()
Notifies when Learn More button is about to click
-
onEndCardWillLeaveApp
abstract Unit onEndCardWillLeaveApp()
Notifies app leave for end card
-
onEmptyAreaClick
abstract Unit onEmptyAreaClick()
Notifies when the EndCard is about to click
-
-
-
-