|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cache.Entry | |
---|---|
javax.cache | This package contains the API for JCache.. |
javax.cache.event | This package contains listeners and scoping interfaces. |
Uses of Cache.Entry in javax.cache |
---|
Methods in javax.cache that return Cache.Entry | |
---|---|
Cache.Entry<K,V> |
CacheLoader.load(Object key)
Loads an object. |
Methods in javax.cache with parameters of type Cache.Entry | |
---|---|
void |
CacheWriter.write(Cache.Entry<K,V> entry)
Write the specified value under the specified key to the underlying store. |
Method parameters in javax.cache with type arguments of type Cache.Entry | |
---|---|
void |
CacheWriter.writeAll(Collection<Cache.Entry<? extends K,? extends V>> entries)
Write the specified entries to the underlying store. |
Uses of Cache.Entry in javax.cache.event |
---|
Methods in javax.cache.event with parameters of type Cache.Entry | |
---|---|
void |
CacheEntryCreatedListener.onCreate(Cache.Entry<K,V> entry)
Called after the entry has been created (put into the cache where no previous mapping existed). |
void |
CacheEntryExpiredListener.onExpire(Cache.Entry<K,V> entry)
Called after the entry has expired and has thus been removed from the Cache. |
void |
CacheEntryReadListener.onRead(Cache.Entry<K,V> entry)
Called after the entry has been read. |
void |
CacheEntryRemovedListener.onRemove(Cache.Entry<K,V> entry)
Called after the entry has been removed. |
void |
CacheEntryUpdatedListener.onUpdate(Cache.Entry<K,V> entry)
Called after the entry has been updated (put into the cache where a previous mapping existed). |
Method parameters in javax.cache.event with type arguments of type Cache.Entry | |
---|---|
void |
CacheEntryCreatedListener.onCreateAll(Iterable<Cache.Entry<K,V>> entries)
Called after the entries have been created (put into the cache where no previous mapping existed). |
void |
CacheEntryReadListener.onReadAll(Iterable<Cache.Entry<K,V>> entries)
Called after the entries have been read. |
void |
CacheEntryRemovedListener.onRemoveAll(Iterable<Cache.Entry<K,V>> entries)
Called after the entries have been removed by a batch operation. |
void |
CacheEntryUpdatedListener.onUpdateAll(Iterable<Cache.Entry<K,V>> entries)
Called after the entries have been updated (put into the cache where a previous mapping existed). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |