| Class and Description |
|---|
| Cache.CycleHandler
Should a cycle be detected during computation of a value
for given key, this interface allows client code to register
a callback that would get invoked in such a case.
|
| CacheEntry
This can be used to remove a specific cache entry from the cache,
for better control of the caching release semantics
|
| CacheKeyFilter
This is used by the cache to remove a series of entries that
match this filter
|
| Computable
Utility interface to capture generic computation of type V from type K.
|
| ComputationErrorException
This exception should be thrown from the
Computable.compute(Object) method
if the returned computation should NOT be kept in the cache. |
| HybridCacheEntry
Represents a single hybrid cache entry.
|
| LRUCache
A cache that contains a certain number of entries, and whose oldest accessed
entries are removed when removal is necessary.
|
| LRUHybridCache.CycleHandler
Should a cycle be detected during computation of a value
for given key, this interface allows client code to register
a callback that would get invoked in such a case.
|
| WeakCARCache
A cache that uses the CAR algorithm to remove entries.
|
| Class and Description |
|---|
| CacheEntry
This can be used to remove a specific cache entry from the cache,
for better control of the caching release semantics
|
| CacheKeyFilter
This is used by the cache to remove a series of entries that
match this filter
|
| Computable
Utility interface to capture generic computation of type V from type K.
|
| LRUCache
A cache that contains a certain number of entries, and whose oldest accessed
entries are removed when removal is necessary.
|
| WeakCARCache
A cache that uses the CAR algorithm to remove entries.
|
| Class and Description |
|---|
| CacheKeyFilter
This is used by the cache to remove a series of entries that
match this filter
|
| Class and Description |
|---|
| CacheKeyFilter
This is used by the cache to remove a series of entries that
match this filter
|
Copyright © 2009–2018 Oracle Corporation. All rights reserved.