com.versant.core.storagemanager |
|
Java Source File Name | Type | Comment |
ApplicationContext.java | Interface | This is used by StorageManager methods that need to call back to the
application layer as part of their execution. |
DummyApplicationContext.java | Class | ApplicationContext that wants all data. |
ExecuteQueryReturn.java | Interface | This holds a CompiledQuery and RunningQuery instance returned by a
call to
StorageManager.executeQuery . |
LRUStorageCache.java | Class | Count limited StorageCache implementation that uses an LRU algorithm to
limit the number of cached instances and query results. |
NOPStorageCache.java | Class | Dummy StorageCache implementation. |
RunningQuery.java | Interface | This identifies the "server side" of a query executed by a StorageManager. |
StorageCache.java | Interface | Cache of State's and query results shared by multiple StorageManager's.
A single class is used to cache both State's and query results so that
query results can be efficiently evicted when States of classes they
depend on are evicted. |
StorageManager.java | Interface | This keeps track of server side transaction and other information for a
application level session (e.g. |
StorageManagerFactory.java | Interface | Factory for StorageManager instances. |
StorageManagerFactoryBuilder.java | Class | Bean to create StorageManagerFactory's. |