org.ajax4jsf.cache
Interface CacheLoader


public interface CacheLoader

User should implement this CacheLoader interface to provide a loader object to load the objects into cache.


Method Summary
 java.lang.Object load(java.lang.Object key, java.lang.Object context)
          loads an object.
 

Method Detail

load

java.lang.Object load(java.lang.Object key,
                      java.lang.Object context)
                      throws CacheException
loads an object. Application writers should implement this method to customize the loading of cache object. This method is called by the caching service when the requested object is not in the cache.

Parameters:
key - the key identifying the object being loaded
Returns:
The object that is to be stored in the cache.
Throws:
CacheException


Copyright © 2010. All Rights Reserved.