Package | Description |
---|---|
net.sf.ehcache |
This package contains the public API for using ehcache.
|
net.sf.ehcache.constructs |
The constructs package builds on top of the core ehcache classes to create
implementations for common caching patterns.
|
net.sf.ehcache.constructs.blocking |
Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs.
|
net.sf.ehcache.constructs.classloader |
ClassLoader contstructs package
|
net.sf.ehcache.constructs.eventual |
Construct related to eventual operations
|
net.sf.ehcache.loader |
This package contains a cache loaders and associated factories.
|
Modifier and Type | Method and Description |
---|---|
List<CacheLoader> |
Ehcache.getRegisteredCacheLoaders() |
List<CacheLoader> |
Cache.getRegisteredCacheLoaders() |
Modifier and Type | Method and Description |
---|---|
Element |
Ehcache.getWithLoader(Object key,
CacheLoader loader,
Object loaderArgument)
This method will return, from the cache, the object associated with
the argument "key".
|
Element |
Cache.getWithLoader(Object key,
CacheLoader loader,
Object loaderArgument)
This method will return, from the cache, the Element associated with the argument "key".
|
void |
Ehcache.registerCacheLoader(CacheLoader cacheLoader)
Register a
CacheLoader with the cache. |
void |
Cache.registerCacheLoader(CacheLoader cacheLoader)
Register a
CacheLoader with the cache. |
void |
Ehcache.unregisterCacheLoader(CacheLoader cacheLoader)
Unregister a
CacheLoader with the cache. |
void |
Cache.unregisterCacheLoader(CacheLoader cacheLoader)
Unregister a
CacheLoader with the cache. |
Modifier and Type | Method and Description |
---|---|
List<CacheLoader> |
EhcacheDecoratorAdapter.getRegisteredCacheLoaders() |
Modifier and Type | Method and Description |
---|---|
Element |
EhcacheDecoratorAdapter.getWithLoader(Object key,
CacheLoader loader,
Object loaderArgument)
This method will return, from the cache, the object associated with
the argument "key".
|
void |
EhcacheDecoratorAdapter.registerCacheLoader(CacheLoader cacheLoader)
Register a
CacheLoader with the cache. |
void |
EhcacheDecoratorAdapter.unregisterCacheLoader(CacheLoader cacheLoader)
Unregister a
CacheLoader with the cache. |
Modifier and Type | Method and Description |
---|---|
Element |
BlockingCache.getWithLoader(Object key,
CacheLoader loader,
Object loaderArgument)
This method is not appropriate to use with BlockingCache.
|
void |
BlockingCache.registerCacheLoader(CacheLoader cacheLoader)
Register a
CacheLoader with the cache. |
void |
BlockingCache.unregisterCacheLoader(CacheLoader cacheLoader)
Unregister a
CacheLoader with the cache. |
Modifier and Type | Method and Description |
---|---|
Element |
ClassLoaderAwareCache.getWithLoader(Object arg0,
CacheLoader arg1,
Object arg2)
This method will return, from the cache, the object associated with
the argument "key".
|
void |
ClassLoaderAwareCache.registerCacheLoader(CacheLoader arg0)
Register a
CacheLoader with the cache. |
void |
ClassLoaderAwareCache.unregisterCacheLoader(CacheLoader arg0)
Unregister a
CacheLoader with the cache. |
Modifier and Type | Method and Description |
---|---|
Element |
StronglyConsistentCacheAccessor.getWithLoader(Object key,
CacheLoader loader,
Object loaderArgument) |
Modifier and Type | Method and Description |
---|---|
CacheLoader |
CacheLoader.clone(Ehcache cache)
Creates a clone of this extension.
|
abstract CacheLoader |
CacheLoaderFactory.createCacheLoader(Ehcache cache,
Properties properties)
Creates a CacheLoader using the Ehcache configuration mechanism at the time the associated cache
is created.
|
Copyright © 2003–2016 Terracotta, Inc.. All rights reserved.