Package com.rtb.sdk
Interface RTBHybridNativeAdLoadDelegate
-
- All Implemented Interfaces:
public interface RTBHybridNativeAdLoadDelegate
-
-
Method Summary
Modifier and Type Method Description abstract UnithybridNativeAdDidReceiveNativeAd(RTBNativeAd nativeAd, RTBBidInfo bidInfo, String networkName)Tells the delegate that an ad request successfully received an native ad. abstract UnithybridNativeAdDidReceiveBannerAd(RTBBannerBid bannerBid, String networkName)Tells the delegate that an ad request successfully received an banner ad. abstract UnithybridNativeAdDidFailToReceiveAd(String errorMessage, String networkName)Tells the delegate that an ad request failed. -
-
Method Detail
-
hybridNativeAdDidReceiveNativeAd
abstract Unit hybridNativeAdDidReceiveNativeAd(RTBNativeAd nativeAd, RTBBidInfo bidInfo, String networkName)
Tells the delegate that an ad request successfully received an native ad.
- Parameters:
bidInfo- Information about the bid.
-
hybridNativeAdDidReceiveBannerAd
abstract Unit hybridNativeAdDidReceiveBannerAd(RTBBannerBid bannerBid, String networkName)
Tells the delegate that an ad request successfully received an banner ad.
-
hybridNativeAdDidFailToReceiveAd
abstract Unit hybridNativeAdDidFailToReceiveAd(String errorMessage, String networkName)
Tells the delegate that an ad request failed.
-
-
-
-