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.distribution This package is for cache replication. 
 

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 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
(package private)  void Cache.setCacheManager(CacheManager cacheManager)
          Package local setter 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.distribution
 

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
 CacheManagerPeerListener RMICacheManagerPeerListenerFactory.createCachePeerListener(CacheManager cacheManager, java.util.Properties properties)
           
abstract  CacheManagerPeerListener CacheManagerPeerListenerFactory.createCachePeerListener(CacheManager cacheManager, java.util.Properties properties)
          Creates a peer provider.
abstract  CacheManagerPeerProvider CacheManagerPeerProviderFactory.createCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
          Create a peer provider.
 CacheManagerPeerProvider RMICacheManagerPeerProviderFactory.createCachePeerProvider(CacheManager cacheManager, java.util.Properties properties)
           
 

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


ehcache