-
public interface HyprMXShowListener
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdStarted(Placement placement)The ad has started showing abstract UnitonAdClosed(Placement placement, Boolean finished)The ad has finished showing abstract UnitonAdDisplayError(Placement placement, HyprMXErrors hyprMXError)There was an error with the placement during presentation. abstract UnitonAdImpression(Placement placement)The ad has had an impression -
-
Method Detail
-
onAdStarted
abstract Unit onAdStarted(Placement placement)
The ad has started showing
- Parameters:
placement- The placement being shown
-
onAdClosed
abstract Unit onAdClosed(Placement placement, Boolean finished)
The ad has finished showing
- Parameters:
placement- The placement being showfinished- true if the ad finished, false otherwise
-
onAdDisplayError
abstract Unit onAdDisplayError(Placement placement, HyprMXErrors hyprMXError)
There was an error with the placement during presentation.
- Parameters:
placement- The placement with the errorhyprMXError- The error that occurred
-
onAdImpression
abstract Unit onAdImpression(Placement placement)
The ad has had an impression
- Parameters:
placement- The placement that had the impression
-
-
-
-