ehcache

Uses of Class
net.sf.ehcache.CacheManager

Packages that use CacheManager
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.config This package contains the cache configuration code. 
net.sf.ehcache.constructs.blocking Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs. 
net.sf.ehcache.constructs.web.filter

Caching filters compliant with the filters in the Servlet 2.3 specification. 

net.sf.ehcache.distribution This package is for cache replication. 
net.sf.ehcache.distribution.jgroups This package is for cache replication using Jgroups. 
net.sf.ehcache.management This package contains JMX MBeans and implementations for management of ehcache. 
 

Uses of CacheManager in net.sf.ehcache
 

Methods in net.sf.ehcache that return CacheManager
static CacheManager CacheManager.create()
          A factory method to create a singleton CacheManager with default config, or return it if it exists.
static CacheManager CacheManager.create(java.io.InputStream inputStream)
          A factory method to create a singleton CacheManager from a java.io.InputStream.
static CacheManager CacheManager.create(java.lang.String configurationFileName)
          A factory method to create a singleton CacheManager with a specified configuration.
static CacheManager CacheManager.create(java.net.URL configurationFileURL)
          A factory method to create a singleton CacheManager from an URL.
 CacheManager Ehcache.getCacheManager()
          Gets the CacheManager managing this cache.
 CacheManager Cache.getCacheManager()
          Gets the CacheManager managing this cache.
static CacheManager CacheManager.getInstance()
          A factory method to create a singleton CacheManager with default config, or return it if it exists.
 

Methods in net.sf.ehcache with parameters of type CacheManager
 void Ehcache.setCacheManager(CacheManager cacheManager)
          Sets the CacheManager
 void Cache.setCacheManager(CacheManager cacheManager)
          For use by CacheManager.
 

Uses of CacheManager in net.sf.ehcache.config
 

Constructors in net.sf.ehcache.config with parameters of type CacheManager
ConfigurationHelper(CacheManager cacheManager, Configuration configuration)
          Only Constructor
 

Uses of CacheManager in net.sf.ehcache.constructs.blocking
 

Methods in net.sf.ehcache.constructs.blocking that return CacheManager
 CacheManager BlockingCache.getCacheManager()
          Gets the CacheManager managing this cache.
 

Methods in net.sf.ehcache.constructs.blocking with parameters of type CacheManager
 void BlockingCache.setCacheManager(CacheManager cacheManager)
          Sets the CacheManager
 

Uses of CacheManager in net.sf.ehcache.constructs.web.filter
 

Methods in net.sf.ehcache.constructs.web.filter that return CacheManager
protected  CacheManager SimplePageFragmentCachingFilter.getCacheManager()
          Gets the CacheManager for this CachingFilter.
protected  CacheManager SimplePageCachingFilter.getCacheManager()
          Gets the CacheManager for this CachingFilter.
protected abstract  CacheManager CachingFilter.getCacheManager()
          Gets the CacheManager for this CachingFilter.
 

Uses of CacheManager in net.sf.ehcache.distribution
 

Fields in net.sf.ehcache.distribution declared as CacheManager
protected  CacheManager RMICacheManagerPeerProvider.cacheManager
          The CacheManager this peer provider is associated with.
 

Methods in net.sf.ehcache.distribution that return CacheManager
 CacheManager RMICacheManagerPeerProvider.getCacheManager()
          The cacheManager this provider is bound to
 

Methods in net.sf.ehcache.distribution with parameters of type CacheManager
protected  CacheManagerPeerProvider RMICacheManagerPeerProviderFactory.createAutomaticallyConfiguredCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
          peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, multicastPacketTimeToLive=255
 CacheManagerPeerListener RMICacheManagerPeerListenerFactory.createCachePeerListener(CacheManager cacheManager, java.util.Properties properties)
           
abstract  CacheManagerPeerListener CacheManagerPeerListenerFactory.createCachePeerListener(CacheManager cacheManager, java.util.Properties properties)
          Creates a peer provider.
 CacheManagerPeerProvider RMICacheManagerPeerProviderFactory.createCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
           
abstract  CacheManagerPeerProvider CacheManagerPeerProviderFactory.createCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
          Create a peer provider.
protected  CacheManagerPeerListener RMICacheManagerPeerListenerFactory.doCreateCachePeerListener(java.lang.String hostName, java.lang.Integer port, java.lang.Integer remoteObjectPort, CacheManager cacheManager, java.lang.Integer socketTimeoutMillis)
          A template method to actually create the factory
 

Constructors in net.sf.ehcache.distribution with parameters of type CacheManager
MulticastKeepaliveHeartbeatSender(CacheManager cacheManager, java.net.InetAddress multicastAddress, java.lang.Integer multicastPort, java.lang.Integer timeToLive)
          Constructor.
MulticastRMICacheManagerPeerProvider(CacheManager cacheManager, java.net.InetAddress groupMulticastAddress, java.lang.Integer groupMulticastPort, java.lang.Integer timeToLive)
          Creates and starts a multicast peer provider
RMICacheManagerPeerListener(java.lang.String hostName, java.lang.Integer port, java.lang.Integer remoteObjectPort, CacheManager cacheManager, java.lang.Integer socketTimeoutMillis)
          Constructor with full arguments.
RMICacheManagerPeerProvider(CacheManager cacheManager)
          Constructor
 

Uses of CacheManager in net.sf.ehcache.distribution.jgroups
 

Methods in net.sf.ehcache.distribution.jgroups with parameters of type CacheManager
 CacheManagerPeerProvider JGroupsCacheManagerPeerProviderFactory.createCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
          Create a peer provider.
 

Constructors in net.sf.ehcache.distribution.jgroups with parameters of type CacheManager
JGroupManager(CacheManager m, java.lang.String connect)
          Construc a new JGroupManager with a specific Jgroups connection String
 

Uses of CacheManager in net.sf.ehcache.management
 

Methods in net.sf.ehcache.management with parameters of type CacheManager
(package private) static javax.management.ObjectName CacheManager.createObjectName(CacheManager cacheManager)
          Creates an object name using the scheme "net.sf.ehcache:type=CacheManager,name="
static void ManagementService.registerMBeans(CacheManager cacheManager, javax.management.MBeanServer mBeanServer, boolean registerCacheManager, boolean registerCaches, boolean registerCacheConfigurations, boolean registerCacheStatistics)
          A convenience static method which creates a ManagementService and initialises it with the supplied parameters.
 

Constructors in net.sf.ehcache.management with parameters of type CacheManager
CacheManager(CacheManager cacheManager)
          Create a management CacheManager
ManagementService(CacheManager cacheManager, javax.management.MBeanServer mBeanServer, boolean registerCacheManager, boolean registerCaches, boolean registerCacheConfigurations, boolean registerCacheStatistics)
          A constructor for a management service for a range of possible MBeans.
 


ehcache