Class NodeIdMessage
- java.lang.Object
- 
- org.apache.ignite.spi.communication.tcp.messages.NodeIdMessage
 
- 
- All Implemented Interfaces:
- Serializable,- Message
 
 public class NodeIdMessage extends Object implements Message Node ID message.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description static intMESSAGE_FULL_SIZEFull message size (with message type) in bytes.- 
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.MessageDIRECT_TYPE_SIZE
 
- 
 - 
Constructor SummaryConstructors Constructor Description NodeIdMessage()NodeIdMessage(UUID nodeId)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.bytefieldsCount()Gets fields count.byte[]nodeIdBytes()static byte[]nodeIdBytesWithType(UUID nodeId)voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.StringtoString()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
 
- 
- 
- 
Field Detail- 
MESSAGE_FULL_SIZEpublic static final int MESSAGE_FULL_SIZE Full message size (with message type) in bytes.- See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
NodeIdMessagepublic NodeIdMessage() 
 - 
NodeIdMessagepublic NodeIdMessage(UUID nodeId) - Parameters:
- nodeId- Node ID.
 
 
- 
 - 
Method Detail- 
nodeIdBytespublic byte[] nodeIdBytes() - Returns:
- Node ID bytes.
 
 - 
nodeIdBytesWithTypepublic static byte[] nodeIdBytesWithType(UUID nodeId) - Parameters:
- nodeId- Node ID.
- Returns:
- Marshalled node ID bytes with direct message type.
 
 - 
onAckReceivedpublic void onAckReceived() Method called when ack message received.- Specified by:
- onAckReceivedin interface- Message
 
 - 
writeTopublic boolean writeTo(ByteBuffer buf, MessageWriter writer) Writes this message to provided byte buffer.
 - 
readFrompublic boolean readFrom(ByteBuffer buf, MessageReader reader) Reads this message from provided byte buffer.
 - 
directTypepublic short directType() Gets message type.- Specified by:
- directTypein interface- Message
- Returns:
- Message type.
 
 - 
fieldsCountpublic byte fieldsCount() Gets fields count.- Specified by:
- fieldsCountin interface- Message
- Returns:
- Fields count.
 
 
- 
 
-