CacheDelegate

/**
 * Optional delegate informing about events in BannerCache.
 */
interface CacheDelegate {
    /**
     * Called when the first banner gets loaded for the cache. Only called once.
     */
    fun firstBannerLoaded()
}

Last updated