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