Package org.apache.ignite.dump
Interface DumpEntry
- 
 public interface DumpEntrySingle cache entry from dump.- See Also:
- Dump.iterator(String, int, int),- DumpConsumer.onPartition(int, int, Iterator),- IgniteSnapshot.createDump(String, Collection)
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intcacheId()longexpireTime()Objectkey()Objectvalue()CacheEntryVersionversion()
 
- 
- 
- 
Method Detail- 
cacheIdint cacheId() - Returns:
- Cache id.
 
 - 
expireTimelong expireTime() - Returns:
- Expiration time.
 
 - 
versionCacheEntryVersion version() - Returns:
- Version of the entry.
 
 - 
keyObject key() - Returns:
- Key.
 
 - 
valueObject value() - Returns:
- Value.
 
 
- 
 
-