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 MVStore
MVMap. store
The store.private MVStore
MVStore.BackgroundWriterThread. store
Methods in org.h2.mvstore that return MVStore Modifier and Type Method Description MVStore
MVMap. getStore()
MVStore
MVStore.Builder. open()
Open the store.static MVStore
MVStore. 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 void
MVStoreTool. compact(MVStore source, MVStore target)
Copy all live pages from the source store to the target store.M
MVMap.BasicBuilder. create(MVStore store, java.util.Map<java.lang.String,java.lang.Object> config)
M
MVMap.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 long
MVStore. commit(java.util.function.Predicate<MVStore> check)
private long
MVStore. 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) MVStore
LobStorageMap. mvStore
private MVStore
Store. mvStore
The store.private MVStore
MVInDoubtTransaction. store
private MVStore
MVTempResult.CloseImpl. store
MVStore.(package private) MVStore
MVTempResult. store
MVStore.Methods in org.h2.mvstore.db that return MVStore Modifier and Type Method Description MVStore
Store. 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) MVStore
TransactionStore. store
The 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 void
Recover. dumpLayout(java.io.PrintWriter writer, MVStore mv)
private void
Recover. dumpLobMaps(java.io.PrintWriter writer, MVStore mv)
private static void
Recover. dumpMeta(java.io.PrintWriter writer, MVStore mv)
private static void
Recover. dumpTypes(java.io.PrintWriter writer, MVStore mv)
-