ehcache

Uses of Interface
net.sf.ehcache.writer.CacheWriterManager

Packages that use CacheWriterManager
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.blocking Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs. 
net.sf.ehcache.store Store package. 
net.sf.ehcache.transaction This package contains classes for controlling cache operations (for transactional use) 
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
 CacheWriterManager Cache.getWriterManager()
          Obtain the writer manager that's used by this cache instance.
 CacheWriterManager Ehcache.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
abstract  CacheWriterManager CacheWriterConfiguration.WriteMode.createWriterManager(Cache cache)
          Create a new WriterManager for a particular cache instance
 

Uses of CacheWriterManager in net.sf.ehcache.constructs.blocking
 

Methods in net.sf.ehcache.constructs.blocking that return CacheWriterManager
 CacheWriterManager BlockingCache.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
 boolean LruMemoryStore.putWithWriter(Element element, CacheWriterManager writerManager)
          Puts an item into the store and the cache writer manager in an atomic operation
 boolean XATransactionalStore.putWithWriter(Element element, CacheWriterManager writerManager)
          XATransactionalStore to put including to the underlying data store.
 boolean Store.putWithWriter(Element element, CacheWriterManager writerManager)
          Puts an item into the store and the cache writer manager in an atomic operation
 boolean MemoryStore.putWithWriter(Element element, CacheWriterManager writerManager)
          Puts an item into the store and the cache writer manager in an atomic operation
 boolean DiskStore.putWithWriter(Element element, CacheWriterManager writerManager)
          Puts an item into the store and the cache writer manager in an atomic operation
 Element LruMemoryStore.removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)
          Removes an item from the store and the cache writer manager in an atomic operation.
 Element XATransactionalStore.removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)
          XATransactionalStore to remove including from the underlying data store.
 Element Store.removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)
          Removes an item from the store and the cache writer manager in an atomic operation.
 Element MemoryStore.removeWithWriter(java.lang.Object key, CacheWriterManager writerManager)
          Removes an item from the store and the cache writer manager in an atomic operation.
 Element DiskStore.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
 

Methods in net.sf.ehcache.transaction with parameters of type CacheWriterManager
 boolean Command.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StorePutCommand.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StoreExpireAllElementsCommand.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StoreRemoveCommand.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StorePutWithWriterCommandImpl.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StoreRemoveAllCommand.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean StoreRemoveWithWriterCommand.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 

Uses of CacheWriterManager in net.sf.ehcache.transaction.xa
 

Methods in net.sf.ehcache.transaction.xa with parameters of type CacheWriterManager
 boolean VersionAwareWrapper.execute(CacheWriterManager cacheWriterManager)
          Executes the command on some cacheWriterManager
 boolean SyncAwareStore.putWithWriter(Element element, CacheWriterManager writerManager)
          Puts an item into the store and the cache writer manager in an atomic operation
 Element SyncAwareStore.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
 class WriteBehindManager
          Implements a WriterManager that writes elements to a queue first and in the background sends the to the CacheWriter.
 

Uses of CacheWriterManager in net.sf.ehcache.writer.writethrough
 

Classes in net.sf.ehcache.writer.writethrough that implement CacheWriterManager
 class WriteThroughManager
          Implements a WriterManager that writes elements directly through to the underlying store.
 


ehcache

true