Class SingleNodeMessage<R extends Serializable>
- java.lang.Object
-
- org.apache.ignite.internal.util.distributed.SingleNodeMessage<R>
-
- Type Parameters:
R- Result type.
- All Implemented Interfaces:
Serializable,Message
public class SingleNodeMessage<R extends Serializable> extends Object implements Message
Single node result message.- See Also:
DistributedProcess,FullMessage,InitMessage, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static shortTYPE_CODEInitial channel message type (value is176).-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description SingleNodeMessage()Empty constructor for marshalling purposes.SingleNodeMessage(UUID processId, DistributedProcess.DistributedProcessType type, R resp, Throwable err)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.Throwableerror()bytefieldsCount()Gets fields count.booleanhasError()voidonAckReceived()Method called when ack message received.UUIDprocessId()booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.Rresponse()inttype()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Field Detail
-
TYPE_CODE
public static final short TYPE_CODE
Initial channel message type (value is176).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SingleNodeMessage
public SingleNodeMessage()
Empty constructor for marshalling purposes.
-
SingleNodeMessage
public SingleNodeMessage(UUID processId, DistributedProcess.DistributedProcessType type, R resp, Throwable err)
- Parameters:
processId- Process id.type- Process type.resp- Single node response.err- Error.
-
-
Method Detail
-
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.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin interfaceMessage
-
processId
public UUID processId()
- Returns:
- Process id.
-
type
public int type()
- Returns:
- Process type.
-
response
public R response()
- Returns:
- Response.
-
hasError
public boolean hasError()
- Returns:
Trueif finished with error.
-
error
public Throwable error()
- Returns:
- Error.
-
-