Interface OffloadIndexEntry
-
- All Known Implementing Classes:
OffloadIndexEntryImpl
@Unstable @LimitedPrivate public interface OffloadIndexEntryThe Index Entry in OffloadIndexBlock. It consists of the message entry id, the tiered storage block part id for this message entry, and the offset in tiered storage block for this message id.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetDataOffset()Get the offset of the block's data within the object.longgetEntryId()Get the entryId that this entry contains.longgetOffset()Get the offset of this block within the object.intgetPartId()Get the block part id of tiered storage.
-
-
-
Method Detail
-
getEntryId
long getEntryId()
Get the entryId that this entry contains.
-
getPartId
int getPartId()
Get the block part id of tiered storage.
-
getOffset
long getOffset()
Get the offset of this block within the object.
-
getDataOffset
long getDataOffset()
Get the offset of the block's data within the object.
-
-