Class GridTaskResultResponse
- java.lang.Object
-
- org.apache.ignite.internal.processors.rest.handlers.task.GridTaskResultResponse
-
- All Implemented Interfaces:
Serializable,Message
public class GridTaskResultResponse extends Object implements Message
Task result response.- 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 GridTaskResultResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.Stringerror()voiderror(String err)bytefieldsCount()Gets fields count.booleanfinished()voidfinished(boolean finished)booleanfound()voidfound(boolean found)voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.@Nullable Objectresult()voidresult(@Nullable Object res)byte[]resultBytes()voidresultBytes(byte[] resBytes)booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Method Detail
-
result
@Nullable public @Nullable Object result()
- Returns:
- Task result.
-
result
public void result(@Nullable @Nullable Object res)- Parameters:
res- Task result.
-
resultBytes
public void resultBytes(byte[] resBytes)
- Parameters:
resBytes- Serialized result.
-
resultBytes
public byte[] resultBytes()
- Returns:
- Serialized result.
-
finished
public boolean finished()
- Returns:
trueif finished.
-
finished
public void finished(boolean finished)
- Parameters:
finished-trueif finished.
-
found
public boolean found()
- Returns:
trueif found.
-
found
public void found(boolean found)
- Parameters:
found-trueif found.
-
error
public String error()
- Returns:
- Error.
-
error
public void error(String err)
- Parameters:
err- Error.
-
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.
-
-