Package org.h2.value
Class VersionedValue<T>
- java.lang.Object
-
- org.h2.value.VersionedValue<T>
-
- Direct Known Subclasses:
Value
public abstract class VersionedValue<T> extends java.lang.ObjectA versioned value (possibly null). It contains current value and latest committed value if current one is uncommitted. Also for uncommitted values it contains operationId - a combination of transactionId and logId.
-
-
Field Summary
Fields Modifier and Type Field Description static longNO_ENTRY_IDstatic longNO_OPERATION_ID
-
Constructor Summary
Constructors Modifier Constructor Description protectedVersionedValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetCommittedValue()TgetCurrentValue()longgetEntryId()longgetOperationId()booleanisCommitted()
-
-
-
Field Detail
-
NO_ENTRY_ID
public static final long NO_ENTRY_ID
- See Also:
- Constant Field Values
-
NO_OPERATION_ID
public static final long NO_OPERATION_ID
- See Also:
- Constant Field Values
-
-