Class NewRootInitRecord<L>
- java.lang.Object
-
- org.apache.ignite.internal.pagemem.wal.record.WALRecord
-
- org.apache.ignite.internal.pagemem.wal.record.delta.PageDeltaRecord
-
- org.apache.ignite.internal.pagemem.wal.record.delta.NewRootInitRecord<L>
-
- All Implemented Interfaces:
WalRecordCacheGroupAware
public class NewRootInitRecord<L> extends PageDeltaRecord
Initialize new root page.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.ignite.internal.pagemem.wal.record.WALRecord
WALRecord.RecordPurpose, WALRecord.RecordType
-
-
Constructor Summary
Constructors Constructor Description NewRootInitRecord(int grpId, long pageId, long newRootId, BPlusInnerIO<L> io, long leftChildId, byte[] rowBytes, long rightChildId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidapplyDelta(PageMemory pageMem, long pageAddr)Apply changes from this delta to the given page.BPlusInnerIO<L>io()longleftId()longrightId()longrootId()byte[]rowBytes()StringtoString()WALRecord.RecordTypetype()-
Methods inherited from class org.apache.ignite.internal.pagemem.wal.record.delta.PageDeltaRecord
fullPageId, groupId, pageId
-
-
-
-
Constructor Detail
-
NewRootInitRecord
public NewRootInitRecord(int grpId, long pageId, long newRootId, BPlusInnerIO<L> io, long leftChildId, byte[] rowBytes, long rightChildId)- Parameters:
grpId- Cache group ID.pageId- Page ID.io- IO.leftChildId- Left child ID.rowBytes- Row.rightChildId- Right child ID.
-
-
Method Detail
-
applyDelta
public void applyDelta(PageMemory pageMem, long pageAddr) throws IgniteCheckedException
Apply changes from this delta to the given page. It is assumed that the given buffer represents page state right before this update.- Specified by:
applyDeltain classPageDeltaRecord- Parameters:
pageMem- Page memory.pageAddr- Page address.- Throws:
IgniteCheckedException- If failed.
-
type
public WALRecord.RecordType type()
-
io
public BPlusInnerIO<L> io()
- Returns:
- IO.
-
rootId
public long rootId()
- Returns:
- Root page ID.
-
leftId
public long leftId()
- Returns:
- Left child ID.
-
rightId
public long rightId()
- Returns:
- Right child ID.
-
rowBytes
public byte[] rowBytes()
- Returns:
- Row bytes.
-
toString
public String toString()
- Overrides:
toStringin classPageDeltaRecord
-
-