Uses of Interface
net.sf.jbaobab.expirable.ExpirationHandler

Packages that use ExpirationHandler
net.sf.jbaobab.expirable Provides object expirers and expirable decorators for the Java Collections Framework
 

Uses of ExpirationHandler in net.sf.jbaobab.expirable
 

Classes in net.sf.jbaobab.expirable that implement ExpirationHandler
static class ExpirationHandler.NullHandler
           A dummny implementation of ExpirationHandler.
 class InternalHandler<E>
           An ExpirationHandler implementation for removing elements in a collection, and handling expired/removed objects with another ExpirationHandler.
 

Fields in net.sf.jbaobab.expirable declared as ExpirationHandler
protected  ExpirationHandler<E> Expirer.handler
           
static ExpirationHandler ExpirationHandler.NULL
           
 

Methods in net.sf.jbaobab.expirable that return ExpirationHandler
 ExpirationHandler<E> Expirer.getHandler()
           
 ExpirationHandler<E> AbstractExpirableCollection.getHandler()
           
 ExpirationHandler<E> Expirer.setHandler(ExpirationHandler<E> handler)
           
 ExpirationHandler<E> AbstractExpirableCollection.setHandler(ExpirationHandler<E> handler)
           
 

Methods in net.sf.jbaobab.expirable with parameters of type ExpirationHandler
 ExpirationHandler<E> Expirer.setHandler(ExpirationHandler<E> handler)
           
 ExpirationHandler<E> AbstractExpirableCollection.setHandler(ExpirationHandler<E> handler)
           
 

Constructors in net.sf.jbaobab.expirable with parameters of type ExpirationHandler
Expirer(ExpirationHandler<E> handler)
           
InternalHandler(InternalHandler.Remover<E> remover, ExpirationHandler<E> handler)
           
ReclaimableExpirer(ExpirationHandler<E> handler)