Class WalStateAckMessage
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.WalStateAckMessage
-
- All Implemented Interfaces:
Serializable,Message
public class WalStateAckMessage extends Object implements Message
WAL state ack message (sent from participant node to coordinator).- 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 WalStateAckMessage()Default constructor.WalStateAckMessage(UUID opId, boolean affNode, boolean changed, @Nullable String errMsg)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaffNode()booleanchanged()shortdirectType()Gets message type.@Nullable StringerrorMessage()bytefieldsCount()Gets fields count.voidonAckReceived()Method called when ack message received.UUIDoperationId()booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.UUIDsenderNodeId()voidsenderNodeId(UUID sndNodeId)StringtoString()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Method Detail
-
operationId
public UUID operationId()
- Returns:
- Operation ID.
-
affNode
public boolean affNode()
- Returns:
- Affinity node flag.
-
changed
public boolean changed()
- Returns:
- Result.
-
errorMessage
@Nullable public @Nullable String errorMessage()
- Returns:
- Error message.
-
senderNodeId
public UUID senderNodeId()
- Returns:
- Sender node ID.
-
senderNodeId
public void senderNodeId(UUID sndNodeId)
- Parameters:
sndNodeId- Sender node ID.
-
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
-
-