Interface | Description |
---|---|
Cache<K,V> |
Basic interface to a cache, defines all operational methods to create, access,
update or delete mappings of key to value
|
Cache.Entry<K,V> |
Represent a mapping of key to value held in a Cache
|
CacheManager | |
PersistentCacheManager |
A CacheManager that knows how to lifecycle
Cache data that outlive the JVM's process existence. |
PersistentUserManagedCache<K,V> |
A
UserManagedCache that holds data that outlives the JVM's process |
UserManagedCache<K,V> |
Represents a Cache that is not managed by a
CacheManager , as such that needs to
have UserManagedCache.close() invoked in order to release all its resources. |
ValueSupplier<V> |
ValueSupplier creates an indirection to access a value. |
Enum | Description |
---|---|
Status |