Uses of Class
net.walend.lyophil.NotInFreezerException

Packages that use NotInFreezerException
net.walend.collection.lyophil.jdbc This package contains a kit for storing the net.walend.collection classes inside a database. 
net.walend.lyophil This package contains generic high level interfaces and simple utility classes. 
net.walend.lyophil.ejb   
net.walend.lyophil.ejb.ejbbeans   
net.walend.lyophil.jdbc This package contains an implementation of lyophil that runs inside a JDBC 2.0 database. 
net.walend.lyophil.jdbc.test.stringbean This package contains a kit for storing the lyophil.stringbean classes inside a 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 NotInFreezerException in net.walend.collection.lyophil.jdbc
 

Methods in net.walend.collection.lyophil.jdbc that throw NotInFreezerException
 void JDBCBackedMutableSetTray.throwOut(java.io.Serializable identifier)
          Remove a frozen instance from cold storage.
 void JDBCAoNMutableSetTray.throwOut(java.io.Serializable identifier)
          Remove a frozen instance from cold storage.
 

Uses of NotInFreezerException in net.walend.lyophil
 

Methods in net.walend.lyophil that throw NotInFreezerException
 java.lang.Class Caster.findInterfaceForIdentifier(java.io.Serializable id)
          Returns the working interface for the object pointed at by identifier.
 Freezable Caster.thaw(java.io.Serializable id)
          Thaw out a freezable.
 void Caster.throwOut(java.io.Serializable id)
          Remove a freezable from the Caster's collection
 Freezable ConcreteTray.thaw(java.io.Serializable id)
          Gets a Freezable out of cold storage.
 void ConcreteTray.throwOut(java.io.Serializable id)
          Remove a frozen instance from cold storage
 HasTypableKey TypableKeyDigger.findByTypableKey(java.lang.String key)
          Returns the Freezable that has the typable key
 java.io.Serializable TypableKeyDigger.findIDForTypableKey(java.lang.String key)
          Returns the id of the Freezable that has the typable key
 Freezable Freezer.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void Freezer.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 

Uses of NotInFreezerException in net.walend.lyophil.ejb
 

Methods in net.walend.lyophil.ejb that throw NotInFreezerException
 Freezable EJBFreezer.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void EJBFreezer.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 

Uses of NotInFreezerException in net.walend.lyophil.ejb.ejbbeans
 

Methods in net.walend.lyophil.ejb.ejbbeans that throw NotInFreezerException
 Freezable FreezerEJB.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void FreezerEJB.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 Freezable FreezerEJBBean.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void FreezerEJBBean.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 

Uses of NotInFreezerException in net.walend.lyophil.jdbc
 

Methods in net.walend.lyophil.jdbc that throw NotInFreezerException
private  ConcreteTray JDBCCaster.getTrayForIdentifier(java.io.Serializable id)
           
 java.lang.Class JDBCCaster.findInterfaceForIdentifier(java.io.Serializable id)
           
 Freezable JDBCCaster.thaw(java.io.Serializable id)
           
 void JDBCCaster.throwOut(java.io.Serializable id)
           
protected  ConcreteTray JDBCCaster.findTrayForIdentifier(java.io.Serializable id)
           
 Freezable JDBCFreezer.thaw(java.io.Serializable identifier)
           
 void JDBCFreezer.throwOut(java.io.Serializable identifier)
           
 java.io.Serializable JDBCTypableKeyTray.findByTypableKey(java.lang.String key)
           
 HasTypableKey JDBCTypableKeyDigger.findByTypableKey(java.lang.String key)
           
 java.io.Serializable JDBCTypableKeyDigger.findIDForTypableKey(java.lang.String key)
           
 

Uses of NotInFreezerException in net.walend.lyophil.jdbc.test.stringbean
 

Methods in net.walend.lyophil.jdbc.test.stringbean that throw NotInFreezerException
 Freezable JDBCColorStringTray.thaw(java.io.Serializable id)
           
 Freezable JDBCStringTray.thaw(java.io.Serializable id)
           
 void JDBCStringTray.throwOut(java.io.Serializable id)
           
 

Uses of NotInFreezerException in net.walend.lyophil.memory
 

Methods in net.walend.lyophil.memory that throw NotInFreezerException
 Freezable MemFreezer.thaw(java.io.Serializable identifier)
          Freeze and thaw methods in MemFreezer always return the same instance of the object.
 void MemFreezer.throwOut(java.io.Serializable identifier)
           
 java.io.Serializable MemTypableKeyDigger.findIDForTypableKey(java.lang.String key)
           
 HasTypableKey MemTypableKeyDigger.findByTypableKey(java.lang.String key)
           
 Freezable MemStorage.findByIdentifier(java.io.Serializable identifier)
          Freeze and findByIdentifier methods in MemStorage always return the same instance of the object.
 void MemStorage.throwOut(java.io.Serializable identifier)
          Remove this victem from all the Maps
 HasTypableKey MemStorage.findByTypableKey(java.lang.String key)
          Returns the Freezable that has the typable key
 java.io.Serializable MemStorage.findIDForTypableKey(java.lang.String key)
           
 java.lang.Class MemCaster.findInterfaceForIdentifier(java.io.Serializable id)
          Warning!! This method asks the Freezer for the Freezable.
 Freezable MemCaster.thaw(java.io.Serializable id)
          Does nothing
 void MemCaster.throwOut(java.io.Serializable id)
          Does nothing.
 

Uses of NotInFreezerException in net.walend.lyophil.queuedwrite
 

Methods in net.walend.lyophil.queuedwrite that throw NotInFreezerException
 Freezable QueuedWriteFreezer.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void QueuedWriteFreezer.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 

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

Methods in net.walend.lyophil.queuedwrite.test that throw NotInFreezerException
 Freezable SleepyQueuedWriteFreezer.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 

Uses of NotInFreezerException in net.walend.lyophil.soft
 

Methods in net.walend.lyophil.soft that throw NotInFreezerException
 Freezable SoftFreezer.thaw(java.io.Serializable identifier)
          For the identifier, return a Freezable object containing the data.
 void SoftFreezer.throwOut(java.io.Serializable identifier)
          Remote the Freezable identified by identifier from the persistent storage
 



Copyright (c) 2000, 2001, David Walend