|
Expresso 5-6 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use CacheException | |
| com.jcorporate.expresso.core.cache | Package containing all of the objects for Expresso's Cache Manager, a general-purpose system for in-memory caching. |
| com.jcorporate.expresso.core.controller | This package contains the object defining the "Controller" object, an important component of Expresso that should be used to encapsulate all user interaction sequences. |
| com.jcorporate.expresso.core.dbobj | Ancestor objects for all Database Objects and Schemas. |
| Uses of CacheException in com.jcorporate.expresso.core.cache |
| Methods in com.jcorporate.expresso.core.cache that throw CacheException | |
void |
Cache.setItems(Vector newItems)
Set the items in the cache |
void |
Cache.setItems(List newItems)
Eventually the new way to set items |
void |
CacheSyncInterface.notifyRemote(CacheSyncMessage message)
The guts of the notification engine, may be blocking or non-blocking depending on the implementation. |
void |
UnOrderedCache.setItems(List newItems)
Eventually the new way to set items |
void |
UnOrderedCache.setItems(Vector newItems)
Goes through all the new items and adds them to the list. |
void |
OrderedCache.setItems(List newItems)
Eventually the new way to set items |
void |
OrderedCache.setItems(Vector newItems)
getItemCount method comment. |
void |
DefaultCacheManager.setItems(String cacheName,
List itemList)
Sets a cache to have the particular items specified in itemList. |
void |
DefaultCacheManager.setItems(String cacheName,
List itemList,
long expiration)
Sets a cache to have the particular items specified in itemList. |
void |
DefaultCacheManager.addItem(String cacheName,
Cacheable newItem)
Adds a Cacheable item into the cache |
void |
DefaultCacheManager.addItem(String cacheName,
Cacheable newItem,
long expiry)
Adds an item to the cache named by parameter cacheName |
void |
DefaultCacheManager.put(String cacheName,
Cacheable newItem)
Adds a Cacheable item into the cache without clearing
related caches. |
void |
DefaultCacheManager.put(String cacheName,
Cacheable newItem,
long expiry)
Adds a Cacheable item into the cache without clearing
related caches. |
void |
DefaultCacheManager.clear(String cacheName)
Clear's the named cache. |
void |
DefaultCacheManager.clear()
Removes all cache items for a particular data context |
Cache |
DefaultCacheManager.createCache(String cacheName,
boolean ordered,
int maxSize)
Creates a cache as specified by the parameters listed. |
Cache |
DefaultCacheManager.createCache(String cacheName,
boolean ordered)
Creates a cache defined by whether the cache is to be ordered, it's name and it's maximum size. |
void |
DefaultCacheManager.removeItem(String cacheName,
Cacheable itemToRemove)
Removes an item from the cache |
void |
DefaultCacheManager.removeItemNoNotify(String cacheName,
Cacheable itemToRemove)
Removes an item out of the cache without notifying the cache listeners |
static void |
CacheManager.addItem(String dataContext,
String cacheName,
Cacheable newItem)
Adds a Cacheable item into the cache |
static void |
CacheManager.addItem(String dataContext,
String cacheName,
Cacheable newItem,
long expiry)
Adds an item to the cache named by parameter cacheName |
static void |
CacheManager.clear(String dataContext)
Removes all cache items for a particular data context |
static void |
CacheManager.clear(String dataContext,
String cacheName)
Clear's the named cache. |
static Cache |
CacheManager.createCache(String dataContext,
String cacheName,
boolean ordered)
Creates a cache as specified by the parameters listed. |
static Cache |
CacheManager.createCache(String dataContext,
String cacheName,
boolean ordered,
int maxSize)
Creates a cache defined by whether the cache is to be ordered, it's name and it's maximum size. |
static void |
CacheManager.removeItem(String dataContext,
String cacheName,
Cacheable itemToRemove)
Removes an item from the cache |
static void |
CacheManager.removeItemNoNotify(String dataContext,
String cacheName,
Cacheable itemToRemove)
Removes an item out of the cache without notifying the cache listeners |
static void |
CacheManager.setItems(String dataContext,
String cacheName,
Vector itemList)
Sets a cache to have the particular items specified in itemList. |
void |
CacheSystem.setItems(String cacheName,
List itemList)
Sets a cache to have the particular items specified in itemList. |
void |
CacheSystem.setItems(String cacheName,
List itemList,
long expiration)
Sets a cache to have the particular items specified in itemList. |
void |
CacheSystem.addItem(String cacheName,
Cacheable newItem)
Adds a Cacheable item into the cache |
void |
CacheSystem.addItem(String cacheName,
Cacheable newItem,
long expiry)
Adds an item to the cache named by parameter cacheName |
void |
CacheSystem.put(String cacheName,
Cacheable newItem)
Adds a Cacheable item into the cache without clearing
related caches. |
void |
CacheSystem.put(String cacheName,
Cacheable newItem,
long expiry)
Adds a Cacheable item into the cache without clearing
related caches. |
void |
CacheSystem.clear(String cacheName)
Clear's the named cache. |
void |
CacheSystem.clear()
Removes all cache items for a particular data context |
Cache |
CacheSystem.createCache(String cacheName,
boolean ordered)
Creates a cache as specified by the parameters listed. |
Cache |
CacheSystem.createCache(String cacheName,
boolean ordered,
int maxSize)
Creates a cache defined by whether the cache is to be ordered, it's name and it's maximum size. |
void |
CacheSystem.removeItem(String cacheName,
Cacheable itemToRemove)
Removes an item from the cache |
void |
CacheSystem.removeItemNoNotify(String cacheName,
Cacheable itemToRemove)
Removes an item out of the cache without notifying the cache listeners |
| Uses of CacheException in com.jcorporate.expresso.core.controller |
| Methods in com.jcorporate.expresso.core.controller that throw CacheException | |
static boolean |
DBController.isAllowed(ControllerRequest request,
DBController controller,
String newState)
for the given controller class and state, can the user in this request access this state? |
| Uses of CacheException in com.jcorporate.expresso.core.dbobj |
| Methods in com.jcorporate.expresso.core.dbobj that throw CacheException | |
protected void |
SecuredDBObject.createSecurityCache()
Creates the security caches Synchronized to provide thread safety since this is accessing a system-wide object. |
|
Expresso 5-6 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||