Class GridQueryNextPageRequest
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.twostep.messages.GridQueryNextPageRequest
-
- All Implemented Interfaces:
Serializable,Message
public class GridQueryNextPageRequest extends Object implements Message
Request to fetch next page.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description GridQueryNextPageRequest()Default constructor.GridQueryNextPageRequest(long qryReqId, int qry, int segmentId, int pageSize, byte flags)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.bytefieldsCount()Gets fields count.bytegetFlags()voidonAckReceived()Method called when ack message received.intpageSize()intquery()longqueryRequestId()booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.intsegmentId()StringtoString()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
GridQueryNextPageRequest
public GridQueryNextPageRequest()
Default constructor.
-
GridQueryNextPageRequest
public GridQueryNextPageRequest(long qryReqId, int qry, int segmentId, int pageSize, byte flags)- Parameters:
qryReqId- Query request ID.qry- Query.segmentId- Index segment ID.pageSize- Page size.flags- Flags.
-
-
Method Detail
-
getFlags
public byte getFlags()
- Returns:
- Flags.
-
queryRequestId
public long queryRequestId()
- Returns:
- Query request ID.
-
query
public int query()
- Returns:
- Query.
-
segmentId
public int segmentId()
- Returns:
- Index segment ID
-
pageSize
public int pageSize()
- Returns:
- Page size.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin interfaceMessage
-
writeTo
public boolean writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
readFrom
public boolean readFrom(ByteBuffer buf, MessageReader reader)
Reads this message from provided byte buffer.
-
directType
public short directType()
Gets message type.- Specified by:
directTypein interfaceMessage- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCountin interfaceMessage- Returns:
- Fields count.
-
-