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 Store
TableDataConglomerate. act_blob_store
The actual Store implementation that maintains the BlobStore information for this conglomerate (if there is one).private Store
TableDataConglomerate. act_state_store
The actual store that backs the state store.private Store
BlobStore. store
The outer Store object that is to contain the blob store.private Store
FixedRecordList. store
The backing Store object that persistantly stores the structure.private Store
IndexSetStore. store
The Store that contains all the data of the index store.private Store
StateStore. store
The Store object this state store wraps around.private Store
V2MasterTableDataSource. store
The backing store object.Methods in com.mckoi.database that return Store Modifier and Type Method Description Store
StoreSystem. createStore(java.lang.String name)
Creates and returns a new persistent Store object given the unique name of the store.Store
V1FileStoreSystem. createStore(java.lang.String name)
Store
V1HeapStoreSystem. createStore(java.lang.String name)
Store
StoreSystem. openStore(java.lang.String name)
Opens an existing persistent Store object in the system and returns the Store object that contains its data.Store
V1FileStoreSystem. openStore(java.lang.String name)
Store
V1HeapStoreSystem. openStore(java.lang.String name)
Methods in com.mckoi.database with parameters of type Store Modifier and Type Method Description boolean
StoreSystem. closeStore(Store store)
Closes a store that has been either created or opened with the 'createStore' or 'openStore' methods.boolean
V1FileStoreSystem. closeStore(Store store)
boolean
V1HeapStoreSystem. closeStore(Store store)
(package private) long
IndexSetStore.IndexBlock. copyTo(Store dest_store)
Copies this index block to the given Store and returns a pointer to the block within the store.long
IndexSetStore.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.boolean
StoreSystem. 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.boolean
V1FileStoreSystem. deleteStore(Store store)
boolean
V1HeapStoreSystem. 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 class
AbstractStore
Provides an abstract implementation of Store.class
HeapStore
An implementation of the Store interface that persists information in the volatile JVM heap memory.class
JournalledFileStore
An implementation of AbstractStore that persists to an underlying data format via a robust journalling system that supports check point and crash recovery.
-