Class IncompleteObject<T>
java.lang.Object
org.apache.ignite.internal.persistence.store.IncompleteObject<T>
- Direct Known Subclasses:
IncompleteStoreObject
Incomplete object.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]data()longbooleanisReady()object()voidvoidreadData(ByteBuffer buf) voidsetNextLink(long nextLink)
-
Field Details
-
data
protected byte[] data
-
-
Constructor Details
-
IncompleteObject
public IncompleteObject(byte[] data) - Parameters:
data- Data bytes.
-
IncompleteObject
public IncompleteObject()Constructor.
-
-
Method Details
-
object
- Returns:
- Cache object if ready.
-
object
- Parameters:
obj- Cache object.
-
isReady
public boolean isReady()- Returns:
Trueif cache object is fully assembled.
-
data
public byte[] data()- Returns:
- Data array.
-
readData
- Parameters:
buf- Read remaining data.
-
getNextLink
public long getNextLink()- Returns:
- Next data page link for fragmented rows.
-
setNextLink
public void setNextLink(long nextLink) - Parameters:
nextLink- Next data page link for fragmented rows.
-