Package org.apache.ignite.internal.util
Class UUIDCollectionMessage
- java.lang.Object
-
- org.apache.ignite.internal.util.UUIDCollectionMessage
-
- All Implemented Interfaces:
Serializable,Message
public class UUIDCollectionMessage extends Object implements Message
Collection of UUIDs.- 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 UUIDCollectionMessage()Empty constructor required for direct marshalling.UUIDCollectionMessage(Collection<UUID> uuids)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.booleanequals(Object o)bytefieldsCount()Gets fields count.inthashCode()static UUIDCollectionMessageof(UUID... uuids)voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.StringtoString()Collection<UUID>uuids()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
UUIDCollectionMessage
public UUIDCollectionMessage()
Empty constructor required for direct marshalling.
-
UUIDCollectionMessage
public UUIDCollectionMessage(Collection<UUID> uuids)
- Parameters:
uuids- UUIDs to wrap.
-
-
Method Detail
-
of
public static UUIDCollectionMessage of(UUID... uuids)
- Parameters:
uuids- UUIDs.- Returns:
- Message.
-
uuids
public Collection<UUID> uuids()
- Returns:
- The collection of UUIDs that was wrapped.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin 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:
directTypein interfaceMessage- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCountin interfaceMessage- Returns:
- Fields count.
-
-