Uses of Interface
net.walend.lyophil.Freezer

Packages that use Freezer
net.walend.lyophil.ejb   
net.walend.lyophil.jdbc This package contains an implementation of lyophil that runs inside a JDBC 2.0 database. 
net.walend.lyophil.memory This package contains an implementation of lyophil that runs inside a jvm's memory. 
net.walend.lyophil.queuedwrite This package contains an implementation of Freezer that queues calls to freeze(), throwOut() and throwOutAll() to execute on a separate thread using a EDU.oswego.cs.dl.util.concurrent.QueuedExecutor . 
net.walend.lyophil.queuedwrite.test This package contains tests for the net.walend.lyophil.queuedwrite package. 
net.walend.lyophil.soft This package contains an implementation of Freezer that caches Freezables inside a SoftHashMap after they are called out of an authoritive Freezer. 
 

Uses of Freezer in net.walend.lyophil.ejb
 

Classes in net.walend.lyophil.ejb that implement Freezer
 class EJBFreezer
           
 

Uses of Freezer in net.walend.lyophil.jdbc
 

Classes in net.walend.lyophil.jdbc that implement Freezer
 class JDBCFreezer
          This Freezer runs inside a jdbc 2.0 compatible database.
 

Uses of Freezer in net.walend.lyophil.memory
 

Classes in net.walend.lyophil.memory that implement Freezer
 class MemFreezer
          A freezer for beans stored in a Map in jvm memory.
 

Uses of Freezer in net.walend.lyophil.queuedwrite
 

Classes in net.walend.lyophil.queuedwrite that implement Freezer
 class QueuedWriteFreezer
          When this Freezer freeze()s, throwOut()s or throwOutAll()s, it puts Runnable commands into a EDU.oswego.cs.dl.util.concurrent.QueuedExecutor, to write on a separate thread.
 

Uses of Freezer in net.walend.lyophil.queuedwrite.test
 

Classes in net.walend.lyophil.queuedwrite.test that implement Freezer
 class SleepyQueuedWriteFreezer
          This subclass of QueuedWriteFreezer is specially built for testing.
 

Uses of Freezer in net.walend.lyophil.soft
 

Classes in net.walend.lyophil.soft that implement Freezer
 class SoftFreezer
          This Freezer caches Freezables in a SoftMemSet as it draws them in from an authoritive Freezer.
 



Copyright (c) 2000, 2001, David Walend