public interface ICacheListener<T>
Modifier and Type | Method and Description |
---|---|
void |
onEntryAdded(T item)
Called when a cache entry is added.
|
void |
onEntryRemoved(T item)
Called when a cache entry is removed.
|
void |
onEntryUpdated(T item)
Called when a cache entry is updated.
|
void onEntryAdded(T item)
item
- void onEntryUpdated(T item)
item
- void onEntryRemoved(T item)
item
-