Interface CacheInvalidator<K>
-
- Type Parameters:
K
- the cache key type
public interface CacheInvalidator<K>
Repreents operations for invalidating some or all entries in a cache.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invalidateAllEntries()
void
invalidateEntry(K key)
-
-
-
Method Detail
-
invalidateEntry
void invalidateEntry(K key)
-
invalidateAllEntries
void invalidateAllEntries()
-
-