Package com.rtb.sdk
Interface RTBBannerAdDelegate
-
- All Implemented Interfaces:
public interface RTBBannerAdDelegate
-
-
Method Summary
Modifier and Type Method Description abstract UnitbannerAdDidReceiveAd(RTBBidInfo bidInfo, String networkName)Tells the delegate that an ad request successfully received an ad. abstract UnitbannerAdDidFailToReceiveAd(String errorMessage, String networkName)Tells the delegate that an ad request failed. abstract UnitbannerAdDidRecordClick(String networkName)Tells the delegate that a click has been recorded for the ad. abstract UnitbannerAdDidPauseForAd(String networkName)Tells the delegate that ad has opened external browser. abstract UnitbannerAdDidResumeAfterAd(String networkName)Tells the delegate that Ad has been dismissed. abstract UnitbannerAdDidFailToRender(String error, String networkName)Tells the delegate that an ad rendering failed. -
-
Method Detail
-
bannerAdDidReceiveAd
abstract Unit bannerAdDidReceiveAd(RTBBidInfo bidInfo, String networkName)
Tells the delegate that an ad request successfully received an ad.
- Parameters:
bidInfo- Information about the bid.
-
bannerAdDidFailToReceiveAd
abstract Unit bannerAdDidFailToReceiveAd(String errorMessage, String networkName)
Tells the delegate that an ad request failed.
-
bannerAdDidRecordClick
abstract Unit bannerAdDidRecordClick(String networkName)
Tells the delegate that a click has been recorded for the ad.
-
bannerAdDidPauseForAd
abstract Unit bannerAdDidPauseForAd(String networkName)
Tells the delegate that ad has opened external browser.
-
bannerAdDidResumeAfterAd
abstract Unit bannerAdDidResumeAfterAd(String networkName)
Tells the delegate that Ad has been dismissed.
-
bannerAdDidFailToRender
abstract Unit bannerAdDidFailToRender(String error, String networkName)
Tells the delegate that an ad rendering failed.
-
-
-
-