Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OnAdCacheModifiedListener.java « ads « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4ebd95d3131e083fad07312a816af9a86024ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapswithme.maps.ads;

import android.support.annotation.NonNull;

/**
 * A common listener to make all interested observers be able to watch for ads cache modifications.
 */
interface OnAdCacheModifiedListener
{
  void onRemoved(@NonNull BannerKey key);
  void onPut(@NonNull BannerKey key);
}