| 
ehcache | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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 | 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 package | 
| net.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 | |
|---|---|
 CacheWriterManager | 
Ehcache.getWriterManager()
Obtain the writer manager that's used by this cache instance.  | 
 CacheWriterManager | 
Cache.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,
                    Store store)
Create a new WriterManager for a particular cache instance | 
| Uses of CacheWriterManager in net.sf.ehcache.constructs | 
|---|
| Methods in net.sf.ehcache.constructs that return CacheWriterManager | |
|---|---|
 CacheWriterManager | 
EhcacheDecoratorAdapter.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 | |
|---|---|
 CacheWriterManager | 
ClassLoaderAwareCache.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 | 
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 | 
LruMemoryStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 boolean | 
LegacyStoreWrapper.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 boolean | 
ElementIdAssigningStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 boolean | 
CacheStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
 | 
 Element | 
Store.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
MemoryStore.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
LruMemoryStore.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
LegacyStoreWrapper.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
ElementIdAssigningStore.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
CacheStore.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
 | 
| Uses of CacheWriterManager in net.sf.ehcache.store.disk | 
|---|
| Methods in net.sf.ehcache.store.disk with parameters of type CacheWriterManager | |
|---|---|
 boolean | 
DiskStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 Element | 
DiskStore.removeWithWriter(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 | |
|---|---|
 boolean | 
LocalTransactionStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 boolean | 
JtaLocalTransactionStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 Element | 
LocalTransactionStore.removeWithWriter(Object key,
                 CacheWriterManager writerManager)
Removes an item from the store and the cache writer manager in an atomic operation.  | 
 Element | 
JtaLocalTransactionStore.removeWithWriter(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 | |
|---|---|
 boolean | 
XATransactionStore.putWithWriter(Element element,
              CacheWriterManager writerManager)
Puts an item into the store and the cache writer manager in an atomic operation  | 
 Element | 
XATransactionStore.removeWithWriter(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 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||