Package org.apache.iotdb.db.wal.buffer
Interface WALEntryValue
-
- All Superinterfaces:
SerializedSize
- All Known Subinterfaces:
IMemTable,IWritableMemChunk,IWritableMemChunkGroup
- All Known Implementing Classes:
AbstractMemTable,AlignedTVList,AlignedWritableMemChunk,AlignedWritableMemChunkGroup,BinaryTVList,BooleanTVList,DeleteDataNode,DeletePlan,DoubleTVList,FloatTVList,InsertRowNode,InsertRowPlan,InsertTabletNode,InsertTabletPlan,IntTVList,LongTVList,NotifyFlushMemTable,PrimitiveMemTable,TVList,WritableMemChunk,WritableMemChunkGroup
public interface WALEntryValue extends SerializedSize
A class implements this interface can be written into .wal file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidserializeToWAL(IWALByteBufferView buffer)Serialize usingIWALByteBufferView, which encapsulates some actions to deal withBufferOverflowExceptionoccurs inByteBuffer.-
Methods inherited from interface org.apache.iotdb.db.utils.SerializedSize
serializedSize
-
-
-
-
Method Detail
-
serializeToWAL
void serializeToWAL(IWALByteBufferView buffer)
Serialize usingIWALByteBufferView, which encapsulates some actions to deal withBufferOverflowExceptionoccurs inByteBuffer.
-
-