Uses of Interface
javax.cache.Cache.Entry

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, Object arg)
          loads an object.
 

Methods in javax.cache with parameters of type Cache.Entry
 void CacheWriter.delete(Cache.Entry<K,V> entry)
          Delete the cache entry from the store
 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.deleteAll(Collection<Cache.Entry<? extends K,? extends V>> entries)
          Remove data and keys from the underlying store for the given collection of keys, if present.
 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).
 



Copyright © 2011. All Rights Reserved.