Package javax.cache

This package contains the API for JCache..

See:
          Description

Interface Summary
Cache<K,V> A Cache provides temporary storage for later fast retrieval.
Cache.Entry<K,V> A cache entry (key-value pair).
CacheBuilder<K,V> A CacheBuilder is used for creating Caches.
CacheConfiguration Information on how a cache is configured.
CacheLoader<K,V> Used for read-through caching and loading data into a cache.
CacheManager A CacheManager is used for looking up Caches and controls their lifecycle.
CacheStatisticsMBean A management bean for caches.
CacheWriter<K,V> A CacheWriter is used for write-through and write-behind caching to a underlying resource.
Lifecycle Cache resources may have non-trivial initialisation and disposal procedures.
Serializer<V> Tagging interface for a binary representation of a value or key.
Serializer.Binary<V> Internal storage
 

Enum Summary
CacheManagerFactory A factory for creating CacheManagers using the SPI conventions in the JDK's ServiceLoader For a provider to be discovered by the CacheManagerFactory, it's jar must contain a resource called:
Status Indicates the status in it's lifecycle of a resource.
 

Exception Summary
CacheException Thrown to indicate an exception has occurred in the Cache.
InvalidConfigurationException An exception to report invalid configuration settings.
 

Package javax.cache Description

This package contains the API for JCache..

Since:
1.7
Author:
Greg Luck, Yannis Cosmadopoulos


Copyright © 2011. All Rights Reserved.