VMware GemFire Java API Reference
Class LocalSessionCacheWriter
- java.lang.Object
-
- org.apache.geode.cache.util.CacheWriterAdapter<String,javax.servlet.http.HttpSession>
-
- org.apache.geode.modules.session.catalina.callback.LocalSessionCacheWriter
-
- All Implemented Interfaces:
CacheCallback,CacheWriter<String,javax.servlet.http.HttpSession>,Declarable
public class LocalSessionCacheWriter extends CacheWriterAdapter<String,javax.servlet.http.HttpSession> implements Declarable
-
-
Constructor Summary
Constructors Constructor Description LocalSessionCacheWriter(Region<String,javax.servlet.http.HttpSession> backingRegion)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbeforeCreate(EntryEvent<String,javax.servlet.http.HttpSession> event)Called before an entry is created.voidbeforeDestroy(EntryEvent<String,javax.servlet.http.HttpSession> event)Called before an entry is destroyed.voidbeforeUpdate(EntryEvent<String,javax.servlet.http.HttpSession> event)Called before an entry is updated.voidclose()Called when the region containing this callback is closed or destroyed, when the cache is closed, or when a callback is removed from a region using anAttributesMutator.-
Methods inherited from class org.apache.geode.cache.util.CacheWriterAdapter
beforeRegionClear, beforeRegionDestroy
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.geode.cache.Declarable
init, initialize
-
-
-
-
Method Detail
-
beforeCreate
public void beforeCreate(EntryEvent<String,javax.servlet.http.HttpSession> event) throws CacheWriterException
Description copied from interface:CacheWriterCalled before an entry is created. Entry creation is initiated by acreate, aput, or aget. TheCacheWritercan determine whether this value comes from agetor not by evaluating theOperation'sOperation.isLoad()method. The entry being created may already exist in the local cache where thisCacheWriteris installed, but it does not yet exist in the cache where the operation was initiated.- Specified by:
beforeCreatein interfaceCacheWriter<String,javax.servlet.http.HttpSession>- Overrides:
beforeCreatein classCacheWriterAdapter<String,javax.servlet.http.HttpSession>- Parameters:
event- an EntryEvent that provides information about the operation in progress- Throws:
CacheWriterException- if thrown will abort the operation in progress, and the exception will be propagated back to caller that initiated the operation- See Also:
Region.create(Object, Object),Region.put(Object, Object),Region.get(Object)
-
beforeUpdate
public void beforeUpdate(EntryEvent<String,javax.servlet.http.HttpSession> event) throws CacheWriterException
Description copied from interface:CacheWriterCalled before an entry is updated. The entry update is initiated by aputor agetthat causes the loader to update an existing entry. The entry previously existed in the cache where the operation was initiated, although the old value may have been null. The entry being updated may or may not exist in the local cache where the CacheWriter is installed.- Specified by:
beforeUpdatein interfaceCacheWriter<String,javax.servlet.http.HttpSession>- Overrides:
beforeUpdatein classCacheWriterAdapter<String,javax.servlet.http.HttpSession>- Parameters:
event- an EntryEvent that provides information about the operation in progress- Throws:
CacheWriterException- if thrown will abort the operation in progress, and the exception will be propagated back to caller that initiated the operation- See Also:
Region.put(Object, Object),Region.get(Object)
-
beforeDestroy
public void beforeDestroy(EntryEvent<String,javax.servlet.http.HttpSession> event) throws CacheWriterException
Description copied from interface:CacheWriterCalled before an entry is destroyed. The entry being destroyed may or may not exist in the local cache where the CacheWriter is installed. This method is not called as a result of expiration orRegion.localDestroy(Object).- Specified by:
beforeDestroyin interfaceCacheWriter<String,javax.servlet.http.HttpSession>- Overrides:
beforeDestroyin classCacheWriterAdapter<String,javax.servlet.http.HttpSession>- Parameters:
event- an EntryEvent that provides information about the operation in progress- Throws:
CacheWriterException- if thrown will abort the operation in progress, and the exception will be propagated back to caller that initiated the operation- See Also:
Region.destroy(Object)
-
close
public void close()
Description copied from interface:CacheCallbackCalled when the region containing this callback is closed or destroyed, when the cache is closed, or when a callback is removed from a region using anAttributesMutator.Implementations should cleanup any external resources such as database connections. Any runtime exceptions this method throws will be logged.
It is possible for this method to be called multiple times on a single callback instance, so implementations must be tolerant of this.
- Specified by:
closein interfaceCacheCallback- Overrides:
closein classCacheWriterAdapter<String,javax.servlet.http.HttpSession>- See Also:
RegionService.close(),Region.close(),Region.localDestroyRegion(),Region.destroyRegion(),AttributesMutator
-
-