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