Package org.apache.ignite.internal
Class GridTaskCancelRequest
- java.lang.Object
-
- org.apache.ignite.internal.GridTaskCancelRequest
-
- All Implemented Interfaces:
Serializable
,Message
public class GridTaskCancelRequest extends Object implements Message
Request for cancelling tasks.- 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 GridTaskCancelRequest()
No-op constructor to supportExternalizable
interface.GridTaskCancelRequest(IgniteUuid sesId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description short
directType()
Gets message type.byte
fieldsCount()
Gets fields count.void
onAckReceived()
Method called when ack message received.boolean
readFrom(ByteBuffer buf, MessageReader reader)
Reads this message from provided byte buffer.IgniteUuid
sessionId()
Gets execution ID of task to be cancelled.String
toString()
boolean
writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
GridTaskCancelRequest
public GridTaskCancelRequest()
No-op constructor to supportExternalizable
interface. This constructor is not meant to be used for other purposes.
-
GridTaskCancelRequest
public GridTaskCancelRequest(IgniteUuid sesId)
- Parameters:
sesId
- Task session ID.
-
-
Method Detail
-
sessionId
public IgniteUuid sessionId()
Gets execution ID of task to be cancelled.- Returns:
- Execution ID of task to be cancelled.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceived
in 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:
directType
in interfaceMessage
- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCount
in interfaceMessage
- Returns:
- Fields count.
-
-