java.lang.Object
org.tentackle.dbms.ModificationLog.ReplayState
- All Implemented Interfaces:
Serializable
- Enclosing class:
ModificationLog
Replay state shared between consecutive invocations of
This is just a DTO. No further logic.
ModificationLog.replay(org.tentackle.dbms.ModificationLog, org.tentackle.session.Session, boolean)
.This is just a DTO. No further logic.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionfinal boolean
true if this is the first block.boolean
true if this is the last block.long[]
the IDs of the replayed modlogs of this chunk.boolean
saved logModificationAllowed.long
the transaction id if BEGIN modlog found.long
transaction voucher. -
Constructor Summary
-
Method Summary
-
Field Details
-
oldLogModificationAllowed
public boolean oldLogModificationAllowedsaved logModificationAllowed. -
txVoucher
public long txVouchertransaction voucher. -
pendingTxId
public long pendingTxIdthe transaction id if BEGIN modlog found. -
modlogIDs
public long[] modlogIDsthe IDs of the replayed modlogs of this chunk. -
first
public final boolean firsttrue if this is the first block. -
last
public boolean lasttrue if this is the last block.
-
-
Constructor Details
-
ReplayState
public ReplayState()Creates an initial state.
-