Uses of Interface
com.mckoi.store.Store
-
Packages that use Store Package Description com.mckoi.database The core database classes for Mckoi.com.mckoi.store -
-
Uses of Store in com.mckoi.database
Fields in com.mckoi.database declared as Store Modifier and Type Field Description private StoreTableDataConglomerate. act_blob_storeThe actual Store implementation that maintains the BlobStore information for this conglomerate (if there is one).private StoreTableDataConglomerate. act_state_storeThe actual store that backs the state store.private StoreBlobStore. storeThe outer Store object that is to contain the blob store.private StoreFixedRecordList. storeThe backing Store object that persistantly stores the structure.private StoreIndexSetStore. storeThe Store that contains all the data of the index store.private StoreStateStore. storeThe Store object this state store wraps around.private StoreV2MasterTableDataSource. storeThe backing store object.Methods in com.mckoi.database that return Store Modifier and Type Method Description StoreStoreSystem. createStore(java.lang.String name)Creates and returns a new persistent Store object given the unique name of the store.StoreV1FileStoreSystem. createStore(java.lang.String name)StoreV1HeapStoreSystem. createStore(java.lang.String name)StoreStoreSystem. openStore(java.lang.String name)Opens an existing persistent Store object in the system and returns the Store object that contains its data.StoreV1FileStoreSystem. openStore(java.lang.String name)StoreV1HeapStoreSystem. openStore(java.lang.String name)Methods in com.mckoi.database with parameters of type Store Modifier and Type Method Description booleanStoreSystem. closeStore(Store store)Closes a store that has been either created or opened with the 'createStore' or 'openStore' methods.booleanV1FileStoreSystem. closeStore(Store store)booleanV1HeapStoreSystem. closeStore(Store store)(package private) longIndexSetStore.IndexBlock. copyTo(Store dest_store)Copies this index block to the given Store and returns a pointer to the block within the store.longIndexSetStore.MappedListBlock. copyTo(Store dest_store)Copies the index data in this block to a new block in the given store and returns a pointer to the new block.booleanStoreSystem. deleteStore(Store store)Permanently deletes a store from the system - use with care! Returns true if the store was successfully deleted and the resources associated with it were freed.booleanV1FileStoreSystem. deleteStore(Store store)booleanV1HeapStoreSystem. deleteStore(Store store)Constructors in com.mckoi.database with parameters of type Store Constructor Description BlobStore(Store store)Constructs the BlobStore on the given Area object.FixedRecordList(Store store, int element_size)Constructs the structure.IndexSetStore(Store store, TransactionSystem system)Constructs the IndexSetStore over the given Store object.StateStore(Store store)Constructs the StateStore. -
Uses of Store in com.mckoi.store
Classes in com.mckoi.store that implement Store Modifier and Type Class Description classAbstractStoreProvides an abstract implementation of Store.classHeapStoreAn implementation of the Store interface that persists information in the volatile JVM heap memory.classJournalledFileStoreAn implementation of AbstractStore that persists to an underlying data format via a robust journalling system that supports check point and crash recovery.
-