| Interface | Description |
|---|---|
| Cache.CycleHandler<K> | |
| CacheEntry |
This can be used to remove a specific cache entry from the cache,
for better control of the caching release semantics
|
| Computable<K,V> |
Utility interface to capture generic computation of type V from type K.
|
| Class | Description |
|---|---|
| Cache<K,V> |
Cache implementation that relies on FutureTask.
|
| LRUCache<K,V> |
A cache that contains a certain number of entries, and whose oldest accessed
entries are removed when removal is necessary.
|
Copyright © 2009-2013 Oracle Corporation. All Rights Reserved.