Interface CacheDataRow
-
- All Superinterfaces:
CacheSearchRow,Storable
- All Known Implementing Classes:
CacheDataRowAdapter,DataRow,DataRowCacheAware
public interface CacheDataRow extends CacheSearchRow, Storable
Cache data row.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description longexpireTime()default IOVersions<? extends AbstractDataPageIO>ioVersions()voidkey(KeyCacheObject key)voidlink(long link)intpartition()CacheObjectvalue()GridCacheVersionversion()-
Methods inherited from interface org.apache.ignite.internal.processors.cache.persistence.CacheSearchRow
cacheId, hash, key, link
-
-
-
-
Method Detail
-
value
CacheObject value()
- Returns:
- Cache value.
-
version
GridCacheVersion version()
- Returns:
- Cache entry version.
-
expireTime
long expireTime()
- Returns:
- Expire time.
-
partition
int partition()
-
link
void link(long link)
-
key
void key(KeyCacheObject key)
- Parameters:
key- Key.
-
ioVersions
default IOVersions<? extends AbstractDataPageIO> ioVersions()
- Specified by:
ioVersionsin interfaceStorable- Returns:
- I/O for handling this storable.
-
-