Uses of Class
org.h2.mvstore.tx.Snapshot
-
Packages that use Snapshot Package Description org.h2.mvstore.tx Helper classes to use the MVStore in a transactional manner. -
-
Uses of Snapshot in org.h2.mvstore.tx
Fields in org.h2.mvstore.tx declared as Snapshot Modifier and Type Field Description private Snapshot<K,VersionedValue<V>>
TransactionMap. snapshot
Snapshot of this map as of beginning of transaction or first usage within transaction or beginning of the statement, depending on isolation levelprivate Snapshot<K,VersionedValue<V>>
TransactionMap. statementSnapshot
Snapshot of this map as of beginning of beginning of the statementMethods in org.h2.mvstore.tx that return Snapshot Modifier and Type Method Description (package private) Snapshot<K,VersionedValue<V>>
TransactionMap. createSnapshot()
Create a new snapshot for this map.(package private) Snapshot<K,VersionedValue<V>>
TransactionMap. getSnapshot()
(package private) Snapshot<K,VersionedValue<V>>
TransactionMap. getStatementSnapshot()
Methods in org.h2.mvstore.tx with parameters of type Snapshot Modifier and Type Method Description (package private) void
TransactionMap. setStatementSnapshot(Snapshot<K,VersionedValue<V>> snapshot)
Constructors in org.h2.mvstore.tx with parameters of type Snapshot Constructor Description TMIterator(TransactionMap<K,V> transactionMap, K from, K to, Snapshot<K,VersionedValue<V>> snapshot, boolean reverse, boolean forEntries)
UncommittedIterator(TransactionMap<K,V> transactionMap, K from, K to, Snapshot<K,VersionedValue<V>> snapshot, boolean reverse, boolean forEntries)
-