Class CacheInvalidationPolicyAlwaysValid<EntryType extends CacheEntry<ObjectType>,ObjectType>
java.lang.Object
se.liu.ida.hefquin.base.datastructures.impl.cache.CacheInvalidationPolicyAlwaysValid<EntryType,ObjectType>
- All Implemented Interfaces:
CacheInvalidationPolicy<EntryType,
ObjectType>
public class CacheInvalidationPolicyAlwaysValid<EntryType extends CacheEntry<ObjectType>,ObjectType>
extends Object
implements CacheInvalidationPolicy<EntryType,ObjectType>
A generic implementation of
CacheInvalidationPolicy
that always
returns true
. In other words, when using this invalidation
policy, cache entries never become stale.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returnstrue
if the given cache entry is still valid according to this cache invalidation policy.
-
Constructor Details
-
CacheInvalidationPolicyAlwaysValid
public CacheInvalidationPolicyAlwaysValid()
-
-
Method Details
-
isStillValid
Description copied from interface:CacheInvalidationPolicy
Returnstrue
if the given cache entry is still valid according to this cache invalidation policy.- Specified by:
isStillValid
in interfaceCacheInvalidationPolicy<EntryType extends CacheEntry<ObjectType>,
ObjectType>
-