Uses of Class
org.h2.mvstore.tx.TransactionMap.TMIterator
-
Packages that use TransactionMap.TMIterator Package Description 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. -
-
Uses of TransactionMap.TMIterator in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as TransactionMap.TMIterator Modifier and Type Field Description private TransactionMap.TMIterator<java.lang.Long,SearchRow,java.util.Map.Entry<java.lang.Long,SearchRow>>
MVPrimaryIndex.MVStoreCursor. it
private TransactionMap.TMIterator<SearchRow,Value,SearchRow>
MVSecondaryIndex.MVStoreCursor. it
Constructors in org.h2.mvstore.db with parameters of type TransactionMap.TMIterator Constructor Description MVStoreCursor(TransactionMap.TMIterator<java.lang.Long,SearchRow,java.util.Map.Entry<java.lang.Long,SearchRow>> it)
MVStoreCursor(SessionLocal session, TransactionMap.TMIterator<SearchRow,Value,SearchRow> it, MVTable mvTable)
-
Uses of TransactionMap.TMIterator in org.h2.mvstore.tx
Subclasses of TransactionMap.TMIterator in org.h2.mvstore.tx Modifier and Type Class Description private static class
TransactionMap.CommittedIterator<K,V,X>
The iterator for read committed isolation level.private static class
TransactionMap.RepeatableIterator<K,V,X>
The iterator for repeatable read and serializable isolation levels.private static class
TransactionMap.UncommittedIterator<K,V,X>
The iterator for read uncommitted isolation level.private static class
TransactionMap.ValidationIterator<K,V,X>
Methods in org.h2.mvstore.tx that return TransactionMap.TMIterator Modifier and Type Method Description private <X> TransactionMap.TMIterator<K,V,X>
TransactionMap. chooseIterator(K from, K to, boolean reverse, boolean forEntries)
TransactionMap.TMIterator<K,V,java.util.Map.Entry<K,V>>
TransactionMap. entryIterator(K from, K to)
Iterate over entries.TransactionMap.TMIterator<K,V,K>
TransactionMap. keyIterator(K from, boolean reverse)
Iterate over keys in the specified order.TransactionMap.TMIterator<K,V,K>
TransactionMap. keyIterator(K from, K to)
Iterate over keys.TransactionMap.TMIterator<K,V,K>
TransactionMap. keyIteratorUncommitted(K from, K to)
Iterate over keys, including keys from uncommitted entries.
-