Class PendingRow
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.tree.PendingRow
-
public class PendingRow extends Object
-
-
Field Summary
Fields Modifier and Type Field Description intcacheIdCache ID.longexpireTimeExpire time.KeyCacheObjectkeylonglinkLink.
-
Constructor Summary
Constructors Constructor Description PendingRow(int cacheId)Creates a new instance which represents an upper or lower bound inside a logical cache.PendingRow(int cacheId, long expireTime, long link)
-
-
-
Field Detail
-
expireTime
public long expireTime
Expire time.
-
link
public long link
Link.
-
cacheId
public int cacheId
Cache ID.
-
key
public KeyCacheObject key
-
-
Constructor Detail
-
PendingRow
public PendingRow(int cacheId)
Creates a new instance which represents an upper or lower bound inside a logical cache.- Parameters:
cacheId- Cache ID.
-
PendingRow
public PendingRow(int cacheId, long expireTime, long link)- Parameters:
cacheId- Cache ID.expireTime- Expire time.link- Link
-
-