Uses of Class
org.jgroups.BytesMessage
-
Packages that use BytesMessage Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc. -
-
Uses of BytesMessage in org.jgroups
Subclasses of BytesMessage in org.jgroups Modifier and Type Class Description class
FragmentedMessage
A message which refers to another message, but only marshals (Streamable.writeTo(DataOutput)
) a part of the original message, starting at a givenoffset
and marshalling onlylength
bytes.Methods in org.jgroups with type parameters of type BytesMessage Modifier and Type Method Description protected <T extends BytesMessage>
TBytesMessage. createMessage()
protected <T extends BytesMessage>
TFragmentedMessage. createMessage()
Methods in org.jgroups that return BytesMessage Modifier and Type Method Description BytesMessage
BytesMessage. setArray(byte[] b, int offset, int length)
Sets the internal array to point to a subset of a given array.BytesMessage
BytesMessage. setArray(ByteArray buf)
Sets the arrayBytesMessage
BytesMessage. setFlag(Message.Flag... flags)
BytesMessage
BytesMessage. setObject(java.lang.Object obj)
Takes an object and uses Java serialization to generate the byte array which is set in the message.
-