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 voidinvalidateAllEntries()voidinvalidateEntry(K key)
-
-
-
Method Detail
-
invalidateEntry
void invalidateEntry(K key)
-
invalidateAllEntries
void invalidateAllEntries()
-
-