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