Package org.apache.ignite.dump
Interface DumpEntry
-
public interface DumpEntry
Single cache entry from dump.- See Also:
Dump.iterator(String, int, int)
,DumpConsumer.onPartition(int, int, Iterator)
,IgniteSnapshot.createDump(String, Collection)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
cacheId()
long
expireTime()
Object
key()
Object
value()
CacheEntryVersion
version()
-
-
-
Method Detail
-
cacheId
int cacheId()
- Returns:
- Cache id.
-
expireTime
long expireTime()
- Returns:
- Expiration time.
-
version
CacheEntryVersion version()
- Returns:
- Version of the entry.
-
key
Object key()
- Returns:
- Key.
-
value
Object value()
- Returns:
- Value.
-
-