performTap

abstract suspend fun performTap(event: AdTapEvent): AdResult<Unit>

Processes advertisement taps.

Processes an advertisement tap event and then notifies the app via the AdEventListener.tapEventProcessed method, if it succeeds, or AdEventListener.tapEventProcessingFailed if it fails.

Can be triggered when a user taps on an ad.

Note: If an error occurs, the renderer should not attempt to call this method again. It is the responsibility of the application to retry the execution. The renderer can use the error to change the display state or for debugging purposes.

Return

The result of the tap processing.

Parameters

event

The AdTapEvent that the SDK should process.