Uses of Interface
net.sf.jso.StorageController

Packages that use StorageController
net.sf.jso   
net.sf.jso.engine   
net.sf.jso.garbage   
net.sf.jso.remote   
net.sf.jso.schema   
net.sf.jso.storage   
net.sf.jso.transaction   
 

Uses of StorageController in net.sf.jso
 

Methods in net.sf.jso that return StorageController
 StorageController StorageEnvironment.getController()
          Returns applications's storage controller.
 

Methods in net.sf.jso with parameters of type StorageController
 void StorageManager.start(StorageController aController)
          Starts the manager.
 

Uses of StorageController in net.sf.jso.engine
 

Classes in net.sf.jso.engine that implement StorageController
 class JSOStorageController
          Controller responsible for coordinating storage operations by several concurrent storage managers.
 

Methods in net.sf.jso.engine that return StorageController
 StorageController JSOEnvironment.getController()
          Returns applications's storage controller.
 

Methods in net.sf.jso.engine with parameters of type StorageController
 void JSOStorageManager.start(StorageController aController)
          Starts the manager.
static void JSOStorageController.safellyStop(StorageController aController)
          Stops a storage controller without throwing any exceptions.
 

Uses of StorageController in net.sf.jso.garbage
 

Constructors in net.sf.jso.garbage with parameters of type StorageController
JSOGarbageCollector(ConnectionPool aPool, TransactionManager aTxMgr, StorageController aController)
          Constructs the collector.
 

Uses of StorageController in net.sf.jso.remote
 

Classes in net.sf.jso.remote that implement StorageController
 class StorageControllerProxy
          Proxy for remote storage controllers.
 

Methods in net.sf.jso.remote with parameters of type StorageController
 void StorageManagerProxy.start(StorageController aController)
          Not supported.
 

Uses of StorageController in net.sf.jso.schema
 

Constructors in net.sf.jso.schema with parameters of type StorageController
JSOSchemaManager(StorageController aController, ConnectionPool aPool, DatabaseInterface aDb)
          Constructs the catalog manager.
 

Uses of StorageController in net.sf.jso.storage
 

Constructors in net.sf.jso.storage with parameters of type StorageController
JSOObjectManager(StorageManager aManager, StorageController aController, SchemaProxy aSchema, DatabaseInterface aDatabase, ConnectionPool aPool, int cacheSize)
          Constructs the object manager.
 

Uses of StorageController in net.sf.jso.transaction
 

Constructors in net.sf.jso.transaction with parameters of type StorageController
JSOTransactionManager(ConnectionPool aPool, StorageController aController)