ehcache

Uses of Interface
net.sf.ehcache.store.compound.ElementSubstitute

Packages that use ElementSubstitute
net.sf.ehcache.store.compound This package contains the main classes and interfaces for the new fully coherent combination disk and memory store for unclustered Ehcache. 
net.sf.ehcache.store.compound.factories This package contains the concrete element substitute factory implementations. 
 

Uses of ElementSubstitute in net.sf.ehcache.store.compound
 

Classes in net.sf.ehcache.store.compound with type parameters of type ElementSubstitute
 interface ElementSubstituteFactory<T extends ElementSubstitute>
          ElementSubstituteFactory is implemented by all true substituting factories.
 

Methods in net.sf.ehcache.store.compound that return types with arguments of type ElementSubstitute
 ElementSubstituteFactory<ElementSubstitute> ElementSubstitute.getFactory()
          Returns the ElementSubstituteFactory instance that generated this ElementProxy
 

Uses of ElementSubstitute in net.sf.ehcache.store.compound.factories
 

Methods in net.sf.ehcache.store.compound.factories that return ElementSubstitute
 ElementSubstitute DiskPersistentStorageFactory.create(Object key, Element element)
          Creates a substitute for the supplied Element
 ElementSubstitute DiskOverflowStorageFactory.create(Object key, Element element)
          Encodes an Element as a marker to on-disk location.
 

Methods in net.sf.ehcache.store.compound.factories with parameters of type ElementSubstitute
 void DiskPersistentStorageFactory.free(Lock exclusion, ElementSubstitute object)
          Free any manually managed resources used by this ElementSubstitute.
 void DiskOverflowStorageFactory.free(Lock lock, ElementSubstitute substitute)
          Free any manually managed resources used by this ElementSubstitute.
 Element DiskPersistentStorageFactory.retrieve(Object key, ElementSubstitute object)
          Decodes the supplied ElementSubstitute.
 Element DiskOverflowStorageFactory.retrieve(Object key, ElementSubstitute proxy)
          Decode an ElementProxy from an on disk marker (or a pending placeholder).
 


ehcache

true