Uses of Class
org.h2.mvstore.MVStore
-
Packages that use MVStore Package Description org.h2.mvstore A persistent storage for tree maps.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.mvstore.tx Helper classes to use the MVStore in a transactional manner.org.h2.tools Various tools. -
-
Uses of MVStore in org.h2.mvstore
Fields in org.h2.mvstore declared as MVStore Modifier and Type Field Description MVStoreMVMap. storeThe store.private MVStoreMVStore.BackgroundWriterThread. storeMethods in org.h2.mvstore that return MVStore Modifier and Type Method Description MVStoreMVMap. getStore()MVStoreMVStore.Builder. open()Open the store.static MVStoreMVStore. open(java.lang.String fileName)Open a store in exclusive mode.Methods in org.h2.mvstore with parameters of type MVStore Modifier and Type Method Description static voidMVStoreTool. compact(MVStore source, MVStore target)Copy all live pages from the source store to the target store.MMVMap.BasicBuilder. create(MVStore store, java.util.Map<java.lang.String,java.lang.Object> config)MMVMap.MapBuilder. create(MVStore store, java.util.Map<java.lang.String,java.lang.Object> config)Create a new map of the given type.Method parameters in org.h2.mvstore with type arguments of type MVStore Modifier and Type Method Description private longMVStore. commit(java.util.function.Predicate<MVStore> check)private longMVStore. tryCommit(java.util.function.Predicate<MVStore> check)Constructors in org.h2.mvstore with parameters of type MVStore Constructor Description BackgroundWriterThread(MVStore store, int sleep, java.lang.String fileStoreName)MVMap(MVStore store, int id, DataType<K> keyType, DataType<V> valueType)MVMap(MVStore store, DataType<K> keyType, DataType<V> valueType, int id, long createVersion, java.util.concurrent.atomic.AtomicReference<RootReference<K,V>> root, int keysPerPage, boolean singleWriter) -
Uses of MVStore in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as MVStore Modifier and Type Field Description (package private) MVStoreLobStorageMap. mvStoreprivate MVStoreStore. mvStoreThe store.private MVStoreMVInDoubtTransaction. storeprivate MVStoreMVTempResult.CloseImpl. storeMVStore.(package private) MVStoreMVTempResult. storeMVStore.Methods in org.h2.mvstore.db that return MVStore Modifier and Type Method Description MVStoreStore. getMvStore()Constructors in org.h2.mvstore.db with parameters of type MVStore Constructor Description CloseImpl(MVStore store, java.lang.String fileName)MVInDoubtTransaction(MVStore store, Transaction transaction) -
Uses of MVStore in org.h2.mvstore.tx
Fields in org.h2.mvstore.tx declared as MVStore Modifier and Type Field Description (package private) MVStoreTransactionStore. storeThe store.Methods in org.h2.mvstore.tx with parameters of type MVStore Modifier and Type Method Description MVMap<K,V>TransactionStore.TxMapBuilder. create(MVStore store, java.util.Map<java.lang.String,java.lang.Object> config)private static MVMap<java.lang.String,DataType<?>>TransactionStore. openTypeRegistry(MVStore store, MetaType<?> metaDataType)Constructors in org.h2.mvstore.tx with parameters of type MVStore Constructor Description TransactionStore(MVStore store)Create a new transaction store.TransactionStore(MVStore store, DataType<?> dataType)TransactionStore(MVStore store, MetaType<?> metaDataType, DataType<?> dataType, int timeoutMillis)Create a new transaction store. -
Uses of MVStore in org.h2.tools
Methods in org.h2.tools with parameters of type MVStore Modifier and Type Method Description private static voidRecover. dumpLayout(java.io.PrintWriter writer, MVStore mv)private voidRecover. dumpLobMaps(java.io.PrintWriter writer, MVStore mv)private static voidRecover. dumpMeta(java.io.PrintWriter writer, MVStore mv)private static voidRecover. dumpTypes(java.io.PrintWriter writer, MVStore mv)
-