Package com.rtb.sdk.protocols
Interface RTBDSPInterstitialDelegate
-
- All Implemented Interfaces:
public interface RTBDSPInterstitialDelegate
-
-
Method Summary
Modifier and Type Method Description abstract UnitdspAdViewDidReceiveAd(RTBDSPInterstitialProtocol ad, String networkName)Tells the delegate that an ad request successfully received an ad. abstract UnitdspAdViewDidFailToReceiveAd(RTBDSPInterstitialProtocol ad, String errorMessage, String networkName)Tells the delegate that an ad request failed. abstract UnitdspAdViewDidRecordClick(RTBDSPInterstitialProtocol ad, String networkName)Tells the delegate that a click has been recorded for the ad. abstract UnitdspAdViewDidPauseForAd(RTBDSPInterstitialProtocol ad, String networkName)Tells the delegate that ad has opened external browser. abstract UnitdspAdViewDidResumeAfterAd(RTBDSPInterstitialProtocol ad, String networkName)Tells the delegate that Ad has been dismissed. -
-
Method Detail
-
dspAdViewDidReceiveAd
abstract Unit dspAdViewDidReceiveAd(RTBDSPInterstitialProtocol ad, String networkName)
Tells the delegate that an ad request successfully received an ad. The delegate may want to add
-
dspAdViewDidFailToReceiveAd
abstract Unit dspAdViewDidFailToReceiveAd(RTBDSPInterstitialProtocol ad, String errorMessage, String networkName)
Tells the delegate that an ad request failed.
-
dspAdViewDidRecordClick
abstract Unit dspAdViewDidRecordClick(RTBDSPInterstitialProtocol ad, String networkName)
Tells the delegate that a click has been recorded for the ad.
-
dspAdViewDidPauseForAd
abstract Unit dspAdViewDidPauseForAd(RTBDSPInterstitialProtocol ad, String networkName)
Tells the delegate that ad has opened external browser.
-
dspAdViewDidResumeAfterAd
abstract Unit dspAdViewDidResumeAfterAd(RTBDSPInterstitialProtocol ad, String networkName)
Tells the delegate that Ad has been dismissed.
-
-
-
-