Interface CacheKeyFilter<K>
-
- Type Parameters:
K
- The key type for this filter
public interface CacheKeyFilter<K>
This is used by the cache to remove a series of entries that match this filter- Author:
- jwells
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(K key)
Returns true if the key matches the filter
-
-
-
Method Detail
-
matches
boolean matches(K key)
Returns true if the key matches the filter- Parameters:
key
- The key from the cache to filter- Returns:
- true if the key matches, false otherwise
-
-