Uses of Interface
net.sf.ehcache.writer.CacheWriterManager
-
Packages that use CacheWriterManager Package Description net.sf.ehcache This package contains the public API for using ehcache.net.sf.ehcache.config This package contains the cache configuration code.net.sf.ehcache.constructs The constructs package builds on top of the core ehcache classes to create implementations for common caching patterns.net.sf.ehcache.constructs.classloader ClassLoader contstructs packagenet.sf.ehcache.store Store package.net.sf.ehcache.store.disk This package contains the disk store.net.sf.ehcache.transaction.local This package contains the local transactions subsystem.net.sf.ehcache.transaction.xa This package contains the functionality to provide XA support to a transactional Cache.net.sf.ehcache.writer.writebehind This package contains the write behind functionalities.net.sf.ehcache.writer.writethrough This package contains the write through functionalities. -
-
Uses of CacheWriterManager in net.sf.ehcache
Methods in net.sf.ehcache that return CacheWriterManager Modifier and Type Method Description CacheWriterManagerCache. getWriterManager()Obtain the writer manager that's used by this cache instance.CacheWriterManagerEhcache. getWriterManager()Obtain the writer manager that's used by this cache instance. -
Uses of CacheWriterManager in net.sf.ehcache.config
Methods in net.sf.ehcache.config that return CacheWriterManager Modifier and Type Method Description abstract CacheWriterManagerCacheWriterConfiguration.WriteMode. createWriterManager(Cache cache, Store store)Create a newWriterManagerfor a particular cache instance -
Uses of CacheWriterManager in net.sf.ehcache.constructs
Methods in net.sf.ehcache.constructs that return CacheWriterManager Modifier and Type Method Description CacheWriterManagerEhcacheDecoratorAdapter. getWriterManager()Obtain the writer manager that's used by this cache instance. -
Uses of CacheWriterManager in net.sf.ehcache.constructs.classloader
Methods in net.sf.ehcache.constructs.classloader that return CacheWriterManager Modifier and Type Method Description CacheWriterManagerClassLoaderAwareCache. getWriterManager()Obtain the writer manager that's used by this cache instance. -
Uses of CacheWriterManager in net.sf.ehcache.store
Methods in net.sf.ehcache.store with parameters of type CacheWriterManager Modifier and Type Method Description booleanCacheStore. putWithWriter(Element element, CacheWriterManager writerManager)booleanElementIdAssigningStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationbooleanLegacyStoreWrapper. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationbooleanLruMemoryStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationbooleanMemoryStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationbooleanStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationElementCacheStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)ElementElementIdAssigningStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation.ElementLegacyStoreWrapper. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation.ElementLruMemoryStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation.ElementMemoryStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation.ElementStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation. -
Uses of CacheWriterManager in net.sf.ehcache.store.disk
Methods in net.sf.ehcache.store.disk with parameters of type CacheWriterManager Modifier and Type Method Description booleanDiskStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationElementDiskStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation. -
Uses of CacheWriterManager in net.sf.ehcache.transaction.local
Methods in net.sf.ehcache.transaction.local with parameters of type CacheWriterManager Modifier and Type Method Description booleanJtaLocalTransactionStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationbooleanLocalTransactionStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationElementJtaLocalTransactionStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation.ElementLocalTransactionStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation. -
Uses of CacheWriterManager in net.sf.ehcache.transaction.xa
Methods in net.sf.ehcache.transaction.xa with parameters of type CacheWriterManager Modifier and Type Method Description booleanXATransactionStore. putWithWriter(Element element, CacheWriterManager writerManager)Puts an item into the store and the cache writer manager in an atomic operationElementXATransactionStore. removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)Removes an item from the store and the cache writer manager in an atomic operation. -
Uses of CacheWriterManager in net.sf.ehcache.writer.writebehind
Classes in net.sf.ehcache.writer.writebehind that implement CacheWriterManager Modifier and Type Class Description classWriteBehindManagerImplements aWriterManagerthat writes elements to a queue first and in the background sends the to theCacheWriter. -
Uses of CacheWriterManager in net.sf.ehcache.writer.writethrough
Classes in net.sf.ehcache.writer.writethrough that implement CacheWriterManager Modifier and Type Class Description classWriteThroughManagerImplements aWriterManagerthat writes elements directly through to the underlying store.
-