Interface PendingRowIO
-
- All Known Implementing Classes:
AbstractPendingEntryInnerIO,AbstractPendingEntryLeafIO,CacheIdAwarePendingEntryInnerIO,CacheIdAwarePendingEntryLeafIO,PendingEntryInnerIO,PendingEntryLeafIO
public interface PendingRowIO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCacheId(long pageAddr, int idx)longgetExpireTime(long pageAddr, int idx)longgetLink(long pageAddr, int idx)
-
-
-
Method Detail
-
getExpireTime
long getExpireTime(long pageAddr, int idx)- Parameters:
pageAddr- Page address.idx- Index.- Returns:
- Expire time.
-
getLink
long getLink(long pageAddr, int idx)- Parameters:
pageAddr- Page address.idx- Index.- Returns:
- Link.
-
getCacheId
int getCacheId(long pageAddr, int idx)- Parameters:
pageAddr- Page address.idx- Index.- Returns:
- Cache ID or
0if Cache ID is not defined.
-
-