Class GridTaskResultRequest
- java.lang.Object
-
- org.apache.ignite.internal.processors.rest.handlers.task.GridTaskResultRequest
-
- All Implemented Interfaces:
Serializable,Message
public class GridTaskResultRequest extends Object implements Message
Task result request.- 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 GridTaskResultRequest()Public no-arg constructor forExternalizablesupport.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.bytefieldsCount()Gets fields count.voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.IgniteUuidtaskId()voidtaskId(IgniteUuid taskId)Objecttopic()voidtopic(String topic)byte[]topicBytes()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
GridTaskResultRequest
public GridTaskResultRequest()
Public no-arg constructor forExternalizablesupport.
-
-
Method Detail
-
taskId
public IgniteUuid taskId()
- Returns:
- Task ID.
-
taskId
public void taskId(IgniteUuid taskId)
- Parameters:
taskId- Task ID.
-
topic
public Object topic()
- Returns:
- Topic.
-
topicBytes
public byte[] topicBytes()
- Returns:
- Serialized topic.
-
topic
public void topic(String topic)
- Parameters:
topic- Topic.
-
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.
-
-