javax.cache |
|
Java Source File Name | Type | Comment |
Cache.java | Interface |
A cache, being a mechanism for efficient temporary storage of objects
for the purpose of improving the overall performance of an application
system, should not be necessary for the application to function correctly,
it only improves the performance.
A cache could be scoped, for examples to a JVM, all JVMs on a node, all
nodes in a cluster, etc. |
CacheEntry.java | Interface | |
CacheException.java | Class | CacheException is a generic exception, which indicates
a cache error has occurred. |
CacheListener.java | Interface | Interface describing various events that can happen as elements are added to
or removed from a cache. |
CacheManager.java | Interface | A container for caches.
The CacheManager maintains all aspects of the Cache lifecycle.
Caches are not started until they are added to a CacheManager
Each vendor will implement CacheManager. |
CacheManagerListener.java | Interface | |
CacheStatistics.java | Interface | |
JCache.java | Class | The static methods in the JCache class are used in J2SE environments for finding a cache manager,
and used by providers to register themselves. |