AATBannerCacheStatusDelegate
/// The delegate that represents the cache status
@objc public protocol AATBannerCacheStatusDelegate {
/// Will be called when the cache was empty and has been filled with at least one ad
func cacheIsNoLongerEmpty()
/// Will be called when the cache was filled and has been consumed and became empty
func cacheIsEmpty()
}
@protocol AATBannerCacheStatusDelegate
/// Will be called when the cache was empty and has been filled with at least one ad
- (void)cacheIsNoLongerEmpty;
/// Will be called when the cache was filled and has been consumed and became empty
- (void)cacheIsEmpty;
@end
Last updated