Uses of Interface
org.castor.cache.hashbelt.container.Container

Packages that use Container
org.castor.cache.hashbelt The Hashbelt API Author: Gregory Block Author: Ralf Joachim This package represents an API, based on a set of articles in the O'Reilly Network by William Grosso, to implement a simplified and 1.3-compatible implementation of a Hashbelt algorithm. 
org.castor.cache.hashbelt.container   
org.castor.cache.hashbelt.reaper   
 

Uses of Container in org.castor.cache.hashbelt
 

Fields in org.castor.cache.hashbelt with type parameters of type Container
static Class<? extends Container> AbstractHashbelt.DEFAULT_CONTAINER_CLASS
          Default container class.
 

Uses of Container in org.castor.cache.hashbelt.container
 

Classes in org.castor.cache.hashbelt.container that implement Container
 class FastIteratingContainer
          The FastIteratingContainer implementation of the Container interface assuems two things: Puts and removes are rare in proportion to gets and iteration are common.
 class MapContainer
          A very basic, HashMap-based implementation of the hashmap container strategy, using nothing more than a basic hashmap to store key/value pairs.
 class WeakReferenceContainer
          An implementation of a container that uses weak references for storing values in the map, so that values can be removed from the map by the system when the system is under memory pressure.
 

Uses of Container in org.castor.cache.hashbelt.reaper
 

Methods in org.castor.cache.hashbelt.reaper with parameters of type Container
 void ReinsertingReaper.handleExpiredContainer(Container expiredContainer)
          Methode called with a container that has expired before the container is garbage collected.
 void RefreshingReaper.handleExpiredContainer(Container expiredContainer)
          Methode called with a container that has expired before the container is garbage collected.
 void Reaper.handleExpiredContainer(Container expiredContainer)
          Methode called with a container that has expired before the container is garbage collected.
 void NullReaper.handleExpiredContainer(Container expiredContainer)
          Methode called with a container that has expired before the container is garbage collected.
 void NotifyingReaper.handleExpiredContainer(Container expiredContainer)
          Methode called with a container that has expired before the container is garbage collected.
 



Copyright © 2010. All Rights Reserved.