| Interface | Description |
|---|---|
| Cache<K,V> |
A
Cache is a Map-like data structure that provides temporary storage
of application data. |
| Cache.Entry<K,V> |
A cache entry (key-value pair).
|
| Cache.EntryProcessor<K,V,T> |
An invocable function that allows applications to perform compound
operations on a
Cache.Entry atomically, according the the defined
consistency of a Cache. |
| Cache.MutableEntry<K,V> |
A mutable representation of a
Cache Cache.Entry. |
| CacheManager |
A
CacheManager provides a means of establishing, configuring,
acquiring, closing and destroying uniquely named Caches. |
| Class | Description |
|---|---|
| Caching |
The
Caching class provides a convenient means for an application to
acquire an appropriate CachingProvider implementation. |
| Caching.CachingProviderRegistry |
Maintains a registry of loaded
CachingProviders scoped by
ClassLoader. |
| Exception | Description |
|---|---|
| CacheException |
Thrown to indicate an exception has occurred in the Cache.
|
Caching class. CacheManager holds and controls a collection
of Caches.
A cache is an association of key to value.
Copyright © 2013. All Rights Reserved.