Class AbstractCacheWriter
- java.lang.Object
-
- net.sf.ehcache.writer.AbstractCacheWriter
-
- All Implemented Interfaces:
CacheWriter
public abstract class AbstractCacheWriter extends java.lang.Object implements CacheWriter
A convenience abstract base class that implements allCacheWritermethods.The
write(net.sf.ehcache.Element),writeAll(java.util.Collection<net.sf.ehcache.Element>),delete(net.sf.ehcache.CacheEntry)anddeleteAll(java.util.Collection<net.sf.ehcache.CacheEntry>)methods throwUnsupportedOperationExceptionunless they're overridden by the class that is extendingAbstractCacheWriter. Classes that are extending this abstract base class should make sure that the appropriate cache writer operation methods are implemented with their application functionalities.- Version:
- $Id$
- Author:
- Geert Bevin
-
-
Constructor Summary
Constructors Constructor Description AbstractCacheWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CacheWriterclone(Ehcache cache)Creates a clone of this writer.voiddelete(CacheEntry entry)Delete the cache entry from the storevoiddeleteAll(java.util.Collection<CacheEntry> entries)Remove data and keys from the underlying store for the given collection of keys, if present.voiddispose()Providers may be doing all sorts of exotic things and need to be able to clean up on dispose.voidinit()Notifies writer to initialise themselves.voidthrowAway(Element element, SingleOperationType operationType, java.lang.RuntimeException e)This method will be called, whenever an Element couldn't be handled by the writer and all theretryAttemptshave been tried.voidwrite(Element element)Write the specified value under the specified key to the underlying store.voidwriteAll(java.util.Collection<Element> elements)Write the specified Elements to the underlying store.
-
-
-
Method Detail
-
write
public void write(Element element) throws CacheException
Write the specified value under the specified key to the underlying store. This method is intended to support both key/value creation and value update for a specific key.- Specified by:
writein interfaceCacheWriter- Parameters:
element- the element to be written- Throws:
CacheException
-
writeAll
public void writeAll(java.util.Collection<Element> elements) throws CacheException
Write the specified Elements to the underlying store. This method is intended to support both insert and update. If this operation fails (by throwing an exception) after a partial success, the convention is that entries which have been written successfully are to be removed from the specified mapEntries, indicating that the write operation for the entries left in the map has failed or has not been attempted.- Specified by:
writeAllin interfaceCacheWriter- Parameters:
elements- the Elements to be written- Throws:
CacheException
-
delete
public void delete(CacheEntry entry) throws CacheException
Delete the cache entry from the store- Specified by:
deletein interfaceCacheWriter- Parameters:
entry- the cache entry that is used for the delete operation- Throws:
CacheException
-
deleteAll
public void deleteAll(java.util.Collection<CacheEntry> entries) throws CacheException
Remove data and keys from the underlying store for the given collection of keys, if present. If this operation fails (by throwing an exception) after a partial success, the convention is that keys which have been erased successfully are to be removed from the specified keys, indicating that the erase operation for the keys left in the collection has failed or has not been attempted.- Specified by:
deleteAllin interfaceCacheWriter- Parameters:
entries- the entries that have been removed from the cache- Throws:
CacheException
-
throwAway
public void throwAway(Element element, SingleOperationType operationType, java.lang.RuntimeException e)
This method will be called, whenever an Element couldn't be handled by the writer and all theretryAttemptshave been tried.When batching is enabled all the elements in the failing batch will be passed to this methods
Try to not throw RuntimeExceptions from this method. Should an Exception occur, it will be logged, but the element will be lost anyways.
- Specified by:
throwAwayin interfaceCacheWriter- Parameters:
element- the Element that triggered the failure, or one of the elements part of the batch that failedoperationType- the operation we tried to executee- the RuntimeException thrown by the Writer when the last retry attempt was being executed
-
clone
public CacheWriter clone(Ehcache cache) throws java.lang.CloneNotSupportedException
Creates a clone of this writer. This method will only be called by ehcache before a cache is initialized.Implementations should throw CloneNotSupportedException if they do not support clone but that will stop them from being used with defaultCache.
- Specified by:
clonein interfaceCacheWriter- Returns:
- a clone
- Throws:
java.lang.CloneNotSupportedException- if the extension could not be cloned.
-
init
public void init()
Notifies writer to initialise themselves.This method is called during the Cache's initialise method after it has changed it's status to alive. Cache operations are legal in this method. If you register a cache writer manually after a cache has been initialised already, this method will be called on the cache writer as soon as it has been registered.
Note that if you reuse cache writer instances or create a factory that returns the same cache writer instance as a singleton, your
initmethod should be able to handle that situation. Unless you perform this multiple usage of a cache writer yourself, Ehcache will not do this though. So in the majority of the use cases, you don't need to do anything special.- Specified by:
initin interfaceCacheWriter
-
dispose
public void dispose() throws CacheExceptionProviders may be doing all sorts of exotic things and need to be able to clean up on dispose.Cache operations are illegal when this method is called. The cache itself is partly disposed when this method is called.
- Specified by:
disposein interfaceCacheWriter- Throws:
CacheException
-
-