Uses of Class
org.h2.mvstore.MVStore.TxCounter
-
Packages that use MVStore.TxCounter Package Description org.h2.mvstore A persistent storage for tree maps.org.h2.mvstore.tx Helper classes to use the MVStore in a transactional manner. -
-
Uses of MVStore.TxCounter in org.h2.mvstore
Fields in org.h2.mvstore declared as MVStore.TxCounter Modifier and Type Field Description private MVStore.TxCounter
MVStore. currentTxCounter
Counter of open transactions for the latest (current) store versionFields in org.h2.mvstore with type parameters of type MVStore.TxCounter Modifier and Type Field Description private static java.util.concurrent.atomic.AtomicIntegerFieldUpdater<MVStore.TxCounter>
MVStore.TxCounter. counterUpdater
private java.util.Deque<MVStore.TxCounter>
MVStore. versions
Ordered collection of all version usage counters for all versions starting from oldestVersionToKeep and up to current.Methods in org.h2.mvstore that return MVStore.TxCounter Modifier and Type Method Description MVStore.TxCounter
MVStore. registerVersionUsage()
Register opened operation (transaction).Methods in org.h2.mvstore with parameters of type MVStore.TxCounter Modifier and Type Method Description void
MVStore. deregisterVersionUsage(MVStore.TxCounter txCounter)
De-register (close) completed operation (transaction). -
Uses of MVStore.TxCounter in org.h2.mvstore.tx
Fields in org.h2.mvstore.tx declared as MVStore.TxCounter Modifier and Type Field Description private MVStore.TxCounter
Transaction. txCounter
Reference to a counter for an earliest store version used by this transaction.
-