Package | Description |
---|---|
javax.cache |
This package contains the API for JCache.
|
javax.cache.event |
This package contains event listener interfaces.
|
javax.cache.expiry |
This package contains expiry policies
|
javax.cache.integration |
This package contains interfaces for integration.
|
Modifier and Type | Interface and Description |
---|---|
static interface |
Cache.MutableEntry<K,V>
A mutable representation of a
Cache Cache.Entry . |
Modifier and Type | Method and Description |
---|---|
Iterator<Cache.Entry<K,V>> |
Cache.iterator()
The ordering of iteration over entries is undefined.
|
Modifier and Type | Class and Description |
---|---|
class |
CacheEntryEvent<K,V>
A Cache entry event base class.
|
Modifier and Type | Method and Description |
---|---|
Duration |
TouchedPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
ModifiedExpiryPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
ExpiryPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
EternalExpiryPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
CreatedExpiryPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
AccessedExpiryPolicy.getExpiryForAccessedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the accessed Cache.Entry is considered expired.
|
Duration |
TouchedPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
ModifiedExpiryPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
ExpiryPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
EternalExpiryPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
CreatedExpiryPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
AccessedExpiryPolicy.getExpiryForCreatedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the newly Cache.Entry is considered expired.
|
Duration |
TouchedPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Duration |
ModifiedExpiryPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Duration |
ExpiryPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Duration |
EternalExpiryPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Duration |
CreatedExpiryPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Duration |
AccessedExpiryPolicy.getExpiryForModifiedEntry(Cache.Entry<? extends K,? extends V> entry)
Gets the duration before the modified Cache.Entry is considered expired.
|
Modifier and Type | Method and Description |
---|---|
Cache.Entry<K,V> |
CacheLoader.load(K key)
Loads an object.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheWriter.write(Cache.Entry<? extends K,? extends V> entry)
Write the specified value under the specified key to the external resource.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheWriter.writeAll(Collection<Cache.Entry<? extends K,? extends V>> entries)
Write the specified entries to the external resource.
|
Copyright © 2013. All Rights Reserved.