Interface | Description |
---|---|
ExpiryPolicy<K> |
Defines functions to determine when cache entries will expire based on
creation, access and modification operations.
|
Class | Description |
---|---|
AccessedExpiryPolicy<K> |
An
ExpiryPolicy that defines the expiry Duration
of a Cache Entry based on the last time it was accessed. |
CreatedExpiryPolicy<K> |
An
ExpiryPolicy that defines the expiry Duration
of a Cache Entry based on when it was created. |
Duration |
A
Serializable duration of time. |
EternalExpiryPolicy<K> |
The eternal
ExpiryPolicy specifies that Cache Entries
won't expire. |
ModifiedExpiryPolicy<K> |
An
ExpiryPolicy that defines the expiry Duration
of a Cache Entry based on the last time it was modified. |
TouchedExpiryPolicy<K> |
An
ExpiryPolicy that defines the expiry Duration
of a Cache Entry based on when it was last touched. |
Copyright © 2013. All Rights Reserved.