public class LocalSessionCacheLoader extends Object implements CacheLoader<String,javax.servlet.http.HttpSession>, Declarable
Constructor and Description |
---|
LocalSessionCacheLoader(Region<String,javax.servlet.http.HttpSession> backingRegion) |
Modifier and Type | Method and Description |
---|---|
void |
close()
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 an
AttributesMutator . |
javax.servlet.http.HttpSession |
load(LoaderHelper<String,javax.servlet.http.HttpSession> helper)
Loads a value.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
init, initialize
public javax.servlet.http.HttpSession load(LoaderHelper<String,javax.servlet.http.HttpSession> helper) throws CacheLoaderException
CacheLoader
Region.get(Object, Object)
that triggered this
load.
load
in interface CacheLoader<String,javax.servlet.http.HttpSession>
helper
- a LoaderHelper object that is passed in from cache service and provides access to
the key, region, argument, and netSearch
.null
causes Region.get(Object, Object)
to return
null
.CacheLoaderException
- if an error occurs. This exception or any other exception thrown
by this method will be propagated back to the application from the get method.Region.get
public void close()
CacheCallback
AttributesMutator
.
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.
close
in interface CacheCallback
RegionService.close()
,
Region.close()
,
Region.localDestroyRegion()
,
Region.destroyRegion()
,
AttributesMutator