Uses of Interface
com.mckoi.database.StoreSystem
-
Packages that use StoreSystem Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of StoreSystem in com.mckoi.database
Classes in com.mckoi.database that implement StoreSystem Modifier and Type Class Description (package private) classV1FileStoreSystemAn implementation of StoreSystem that manages persistant data through the native file system.(package private) classV1HeapStoreSystemAn implementation of StoreSystem that stores all persistent data on the heap using HeapStore objects.Fields in com.mckoi.database declared as StoreSystem Modifier and Type Field Description private StoreSystemMasterTableDataSource. store_systemThe StoreSystem implementation that represents the data persistence layer.private StoreSystemTableDataConglomerate. store_systemThe StoreSystem object used by this conglomerate to store the underlying representation.private StoreSystemTransactionSystem. store_systemThe underlying StoreSystem implementation that encapsulates the behaviour for storing data persistantly.Methods in com.mckoi.database that return StoreSystem Modifier and Type Method Description StoreSystemDatabase. storeSystem()Returns the StoreSystem for this Database.protected StoreSystemMasterTableDataSource. storeSystem()Returns the StoreSystem object used to manage stores in the persistence system.StoreSystemTableDataConglomerate. storeSystem()Returns the StoreSystem used by this conglomerate to manage the persistent state of the database.StoreSystemTransactionSystem. storeSystem()Returns the StoreSystem encapsulation being used in this database.Methods in com.mckoi.database with parameters of type StoreSystem Modifier and Type Method Description (package private) voidBlobStore. copyFrom(StoreSystem store_system, BlobStore src_blob_store)Copies all the blob data from the given BlobStore into this blob store.Constructors in com.mckoi.database with parameters of type StoreSystem Constructor Description MasterTableDataSource(TransactionSystem system, StoreSystem store_system, OpenTransactionList open_transactions, BlobStoreInterface blob_store_interface)Constructs the MasterTableDataSource.TableDataConglomerate(TransactionSystem system, StoreSystem store_system)Constructs the conglomerate.V1MasterTableDataSource(TransactionSystem system, StoreSystem store_system, OpenTransactionList open_transactions)The Constructor.V2MasterTableDataSource(TransactionSystem system, StoreSystem store_system, OpenTransactionList open_transactions, BlobStoreInterface blob_store_interface)The Constructor.
-