Package org.apache.ignite.internal.util
Class GridMessageCollection<M extends Message>
- java.lang.Object
-
- org.apache.ignite.internal.util.GridMessageCollection<M>
-
- All Implemented Interfaces:
Serializable,Message
public final class GridMessageCollection<M extends Message> extends Object implements Message
Collection of messages.- 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 GridMessageCollection()GridMessageCollection(Collection<M> msgs)
-
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()Collection<M>messages()voidmessages(Collection<M> msgs)static <X extends Message>
GridMessageCollection<X>of(X... msgs)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.
-
-
-
Constructor Detail
-
GridMessageCollection
public GridMessageCollection()
-
GridMessageCollection
public GridMessageCollection(Collection<M> msgs)
- Parameters:
msgs- Collection of messages.
-
-
Method Detail
-
of
public static <X extends Message> GridMessageCollection<X> of(X... msgs)
- Parameters:
msgs- Messages.- Returns:
- Message list.
-
messages
public Collection<M> messages()
- Returns:
- Messages.
-
messages
public void messages(Collection<M> msgs)
- Parameters:
msgs- Messages.
-
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.
-
-