Class HandshakeWaitMessage
- java.lang.Object
-
- org.apache.ignite.spi.communication.tcp.messages.HandshakeWaitMessage
-
- All Implemented Interfaces:
Serializable
,Message
public class HandshakeWaitMessage extends Object implements Message
Message requesting to wait until node's SPI context initialize.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
MESSAGE_FULL_SIZE
Full message size (with message type) in bytes.-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description HandshakeWaitMessage()
Default constructor required byMessage
.
-
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.String
toString()
boolean
writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
-
-
Field Detail
-
MESSAGE_FULL_SIZE
public static final int MESSAGE_FULL_SIZE
Full message size (with message type) in bytes.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
HandshakeWaitMessage
public HandshakeWaitMessage()
Default constructor required byMessage
.
-
-
Method Detail
-
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.
-
-