Class CompositeMessage
- All Implemented Interfaces:
Iterable<Message>,Constructable<Message>,Message,SizeStreamable,Streamable
In versions prior to 5.0, the byte arrays had to be copied into a single, larger (1001 bytes), byte array in order to be passed to the message.
This class is unsynchronized; the envisaged use case is that a CompositeMessage is created with a number of messages, or messages are added, but then the instance is not modified anymore and sent.
- Since:
- 5.0
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.jgroups.Message
Message.Flag, Message.TransientFlag -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanprotected intprotected static final MessageFactoryprotected Message[]Fields inherited from class org.jgroups.BaseMessage
dest, DEST_SET, flags, headers, sender, SRC_SET, transient_flagsFields inherited from interface org.jgroups.Message
BYTES_MSG, COMPOSITE_MSG, EARLYBATCH_MSG, EMPTY_MSG, FRAG_MSG, LONG_MSG, NIO_MSG, OBJ_MSG -
Constructor Summary
ConstructorsConstructorDescriptionCompositeMessage(Address dest) CompositeMessage(Address dest, Message... messages) -
Method Summary
Modifier and TypeMethodDescriptionAdds the message at the end of the array.booleancollapse()collapse(boolean b) copy(boolean copy_payload, boolean copy_headers) Create a copy of thisCompositeMessage.create()Creates an instance of the class implementing this interfaceprotected voidensureCapacity(int size) protected MessageensureSameDest(Message msg) <T extends Message>
Tget(int index) byte[]getArray()Returns a reference to the payload (byte array).intReturns the length of the byte[] array payload.int<T> TGets an object from the payload.intReturns the offset of the byte[] array at which user data starts.shortgetType()Returns the type of the message, e.g.booleanhasArray()Returns true if this message has a byte[] array as payload (even if it's null!), false otherwisebooleanReturns true if the message has a payload, e.g.iterator()voidreadPayload(DataInput in) setArray(byte[] b, int o, int l) Sets the byte array in a message.Sets the byte array in a message.Sets an object in a message.intsize()Returns the exact size of the marshalled messagetoString()voidwritePayload(DataOutput out) protected voidMethods inherited from class org.jgroups.BaseMessage
clearFlag, clearFlag, clearHeaders, copyPayload, createHeaders, getDest, getFlags, getHeader, getHeaders, getNumHeaders, getPayload, getSrc, headers, headers, isFlagSet, isFlagSet, printHeaders, putHeader, putHeader, putHeaderIfAbsent, readFrom, serializedSize, setDest, setFlag, setFlag, setFlag, setFlagIfAbsent, setPayload, setSrc, writeTo, writeToNoAddrsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
msgs
-
index
protected int index -
collapse
protected boolean collapse -
mf
-
-
Constructor Details
-
CompositeMessage
public CompositeMessage() -
CompositeMessage
-
CompositeMessage
-
-
Method Details
-
create
Description copied from interface:ConstructableCreates an instance of the class implementing this interface- Specified by:
createin interfaceConstructable<Message>
-
getType
public short getType()Description copied from interface:MessageReturns the type of the message, e.g. BYTES_MSG, OBJ_MSG etc -
hasPayload
public boolean hasPayload()Description copied from interface:MessageReturns true if the message has a payload, e.g. a byte[] array in aBytesMessageor an object in anObjectMessage. This is more generic thanMessage.hasArray(), as it is not just applicable to a byte array.- Specified by:
hasPayloadin interfaceMessage- Returns:
- True if the message has a payload
-
hasArray
public boolean hasArray()Description copied from interface:MessageReturns true if this message has a byte[] array as payload (even if it's null!), false otherwise -
getNumberOfMessages
public int getNumberOfMessages() -
getOffset
public int getOffset()Description copied from interface:MessageReturns the offset of the byte[] array at which user data starts. Throws an exception if the message does not have a byte[] array payload (ifMessage.hasArray()is false).Note that this is a convenience method, as most messages are of type
BytesMessage. -
getArray
public byte[] getArray()Description copied from interface:MessageReturns a reference to the payload (byte array). Note that this array should not be modified as we do not copy the array on copy() or clone(): the array of the copied message is simply a reference to the old array.Even if offset and length are used: we return the entire array, not a subset.
Throws an exception if the message does not have a byte[] array payload (
Message.hasArray()is false).Note that this is a convenience method, as most messages are of type
BytesMessage. It is recommended to downcast aMessageto the correct subtype and use the methods available there to get/set the payload. -
setArray
Description copied from interface:MessageSets the byte array in a message.Throws an exception if the message does not have a byte[] array payload (
Message.hasArray()is false).Note that this is a convenience method, as most messages are of type
BytesMessage. It is recommended to downcast aMessageto the correct subtype and use the methods available there to get/set the payload. -
setArray
Description copied from interface:MessageSets the byte array in a message.Throws an exception if the message does not have a byte[] array payload (
Message.hasArray()is false).Note that this is a convenience method, as most messages are of type
BytesMessage. It is recommended to downcast aMessageto the correct subtype and use the methods available there to get/set the payload. -
setObject
Description copied from interface:MessageSets an object in a message. In aObjectMessage, the object is set directly. In aBytesMessage, the object is serialized into a byte[] array and then the array is set as the payload of the message -
getObject
public <T> T getObject()Description copied from interface:MessageGets an object from the payload. If the payload is a byte[] array (e.g. as inBytesMessage), an attempt to de-serialize the array into an object is made, and the object returned.If the payload is an object (e.g. as is the case in
ObjectMessage), the object will be returned directly. -
collapse
public boolean collapse() -
collapse
-
getLength
public int getLength()Description copied from interface:MessageReturns the length of the byte[] array payload. If the message does not have a byte[] array payload (Message.hasArray()is false), then the serialized size may be returned, or an implementation may choose to throw an exception -
add
Adds the message at the end of the array. Increases the array if needed -
add
-
get
-
copy
Create a copy of thisCompositeMessage.- Specified by:
copyin interfaceMessage- Overrides:
copyin classBaseMessage- Parameters:
copy_payload- If true, the payload is copied, else it is null in the copied messagecopy_headers- If true, the headers are copied
-
toString
- Overrides:
toStringin classBaseMessage
-
size
public int size()Description copied from interface:MessageReturns the exact size of the marshalled message- Specified by:
sizein interfaceMessage- Overrides:
sizein classBaseMessage- Returns:
- The number of bytes for the marshalled message
-
iterator
-
writePayload
- Specified by:
writePayloadin interfaceMessage- Throws:
IOException
-
readPayload
- Specified by:
readPayloadin interfaceMessage- Throws:
IOExceptionClassNotFoundException
-
writePayloadAsBytes
- Throws:
IOException
-
ensureCapacity
protected void ensureCapacity(int size) -
ensureSameDest
-