Uses of Class
net.sf.ehcache.CacheEntry
-
Packages that use CacheEntry Package Description net.sf.ehcache.transaction.xa.commands This package contains a representation of the queued commands which can be executed against a XA store.net.sf.ehcache.writer This package contains the cache writer functionalities.net.sf.ehcache.writer.writebehind This package contains the write behind functionalities.net.sf.ehcache.writer.writebehind.operations This package contains the operations for the write behind functionalities.net.sf.ehcache.writer.writethrough This package contains the write through functionalities. -
-
Uses of CacheEntry in net.sf.ehcache.transaction.xa.commands
Methods in net.sf.ehcache.transaction.xa.commands that return CacheEntry Modifier and Type Method Description CacheEntryStoreRemoveCommand. getEntry()Getter to the cache entry to be removed -
Uses of CacheEntry in net.sf.ehcache.writer
Methods in net.sf.ehcache.writer with parameters of type CacheEntry Modifier and Type Method Description voidAbstractCacheWriter. delete(CacheEntry entry)Delete the cache entry from the storevoidCacheWriter. delete(CacheEntry entry)Delete the cache entry from the storevoidCacheWriterManager. remove(CacheEntry entry)Schedule a remove operation for this key in the CacheWriterManager, which will call the CacheWriter when appropriate.Method parameters in net.sf.ehcache.writer with type arguments of type CacheEntry Modifier and Type Method Description voidAbstractCacheWriter. deleteAll(java.util.Collection<CacheEntry> entries)Remove data and keys from the underlying store for the given collection of keys, if present.voidCacheWriter. deleteAll(java.util.Collection<CacheEntry> entries)Remove data and keys from the underlying store for the given collection of keys, if present. -
Uses of CacheEntry in net.sf.ehcache.writer.writebehind
Methods in net.sf.ehcache.writer.writebehind with parameters of type CacheEntry Modifier and Type Method Description voidAbstractWriteBehindQueue. delete(CacheEntry entry)Add a delete operation for the given cache entryvoidNonStopWriteBehind. delete(CacheEntry entry)voidWriteBehind. delete(CacheEntry entry)Add a delete operation for the given cache entryvoidWriteBehindQueueManager. delete(CacheEntry entry)Add a delete operation for the given cache entryvoidWriteBehindManager. remove(CacheEntry entry)Schedule a remove operation for this key in the CacheWriterManager, which will call the CacheWriter when appropriate. -
Uses of CacheEntry in net.sf.ehcache.writer.writebehind.operations
Methods in net.sf.ehcache.writer.writebehind.operations that return CacheEntry Modifier and Type Method Description CacheEntryDeleteOperation. getEntry()Retrieves the entry that will be used for this operationConstructors in net.sf.ehcache.writer.writebehind.operations with parameters of type CacheEntry Constructor Description DeleteOperation(CacheEntry entry)Create a new delete operation for a particular entryDeleteOperation(CacheEntry entry, long creationTime)Create a new delete operation for a particular entry and creation timeConstructor parameters in net.sf.ehcache.writer.writebehind.operations with type arguments of type CacheEntry Constructor Description DeleteAllOperation(java.util.List<CacheEntry> entries)Create a new delete all operation for the provided list of cache entries -
Uses of CacheEntry in net.sf.ehcache.writer.writethrough
Methods in net.sf.ehcache.writer.writethrough with parameters of type CacheEntry Modifier and Type Method Description voidWriteThroughManager. remove(CacheEntry entry)Schedule a remove operation for this key in the CacheWriterManager, which will call the CacheWriter when appropriate.
-