ehcache

Uses of Class
net.sf.ehcache.Status

Packages that use Status
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.constructs.blocking Doug Lea in his book Concurrent Programming in Java talks about concurrency support constructs. 
net.sf.ehcache.distribution This package is for cache replication. 
net.sf.ehcache.store Store package. 
 

Uses of Status in net.sf.ehcache
 

Fields in net.sf.ehcache declared as Status
static Status Status.STATUS_ALIVE
          The cache is alive.
static Status Status.STATUS_SHUTDOWN
          The cache is shudown.
static Status Status.STATUS_UNINITIALISED
          The cache is uninitialised.
 

Methods in net.sf.ehcache that return Status
static Status Status.convertIntToStatus(int statusAsInt)
           
 Status Cache.getStatus()
          Gets the status attribute of the Cache.
 Status Ehcache.getStatus()
          Gets the status attribute of the Cache.
 Status CacheManager.getStatus()
          Gets the status attribute of the Ehcache
 

Methods in net.sf.ehcache with parameters of type Status
 boolean Status.equals(Status status)
          Equality checker when the comparison object is of the same type.
 

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

Methods in net.sf.ehcache.constructs.blocking that return Status
 Status BlockingCache.getStatus()
          Gets the status attribute of the Cache.
 

Uses of Status in net.sf.ehcache.distribution
 

Fields in net.sf.ehcache.distribution declared as Status
protected  Status RMICacheManagerPeerListener.status
          status.
protected  Status RMISynchronousCacheReplicator.status
          The status of the replicator.
 

Methods in net.sf.ehcache.distribution that return Status
 Status RMICacheManagerPeerListener.getStatus()
          Returns the listener status.
 Status CacheManagerPeerListener.getStatus()
          Returns the listener status.
 

Uses of Status in net.sf.ehcache.store
 

Fields in net.sf.ehcache.store declared as Status
protected  Status MemoryStore.status
          status.
 

Methods in net.sf.ehcache.store that return Status
 Status Store.getStatus()
          Returns the cache status.
 Status DiskStore.getStatus()
          Returns the store status.
 Status MemoryStore.getStatus()
          Gets the status of the MemoryStore.
 


ehcache