Skip navigation links
oracle.toplink.descriptors.invalidation
Class CacheInvalidationPolicy
java.lang.Object
oracle.toplink.descriptors.invalidation.CacheInvalidationPolicy
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- DailyCacheInvalidationPolicy, NoExpiryCacheInvalidationPolicy, TimeToLiveCacheInvalidationPolicy
- public abstract class CacheInvalidationPolicy
- extends java.lang.Object
- implements java.io.Serializable
PUBLIC: A CacheInvalidationPolicy is used to set objects in TopLink's identity maps to be invalid following given rules. CacheInvalidationPolicy is the abstract superclass for all policies used for cache invalidation. By default in TopLink, objects do not expire in the cache. Several different policies are available to allow objects to expire. These can be set on the Descriptor.
- See Also:
Descriptor
, oracle.toplink.descriptors.cacheinvalidation.NoExpiryCacheInvalidationPolicy
, oracle.toplink.descriptors.cacheinvalidation.DailyCacheInvalidationPolicy
, oracle.toplink.descriptors.cacheinvalidation.TimeToLiveCacheInvalidationPolicy
, Serialized Form
Method Summary |
void |
setShouldUpdateReadTimeOnUpdate(boolean shouldUpdateReadTime)
PUBLIC: Set whether to update the stored time an object was read when an object is updated. |
boolean |
shouldUpdateReadTimeOnUpdate()
PUBLIC: Return whether objects affected by this CacheInvalidationPolicy should have the read time on their cache keys updated when an update occurs. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NO_EXPIRY
public static final long NO_EXPIRY
-
- See Also:
- Constant Field Values
CacheInvalidationPolicy
public CacheInvalidationPolicy()
setShouldUpdateReadTimeOnUpdate
public void setShouldUpdateReadTimeOnUpdate(boolean shouldUpdateReadTime)
- PUBLIC: Set whether to update the stored time an object was read when an object is updated. When the read time is updated, it indicates to TopLink that the data in the object is up to date. This means that cache invalidation checks will occur relative to the new read time. By default, the read time will not be updated when an object is updated. Often it is possible to be confident that the object is up to date after an update because otherwise the update will fail because of the locking policies in use.
shouldUpdateReadTimeOnUpdate
public boolean shouldUpdateReadTimeOnUpdate()
- PUBLIC: Return whether objects affected by this CacheInvalidationPolicy should have the read time on their cache keys updated when an update occurs.
Skip navigation links