Uses of Class
org.jgroups.BaseMessage
-
Packages that use BaseMessage Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc. -
-
Uses of BaseMessage in org.jgroups
Subclasses of BaseMessage in org.jgroups Modifier and Type Class Description class
BatchMessage
A message that contains a batch of messages.class
BytesMessage
AMessage
containing a byte array as payload.class
CompositeMessage
A message composed of multiple messages.class
EmptyMessage
AMessage
without a payload; optimized for sending only headers (e.g.class
FragmentedMessage
A message which refers to another message, but only marshals (Streamable.writeTo(DataOutput)
) a part of the original message, starting at a givenBytesMessage.offset
and marshalling onlyBytesMessage.length
bytes.class
LongMessage
Message with a long as payload.class
NioMessage
AMessage
with a (heap-based or direct)ByteBuffer
as payload.
Note that the payload of an NioMessage must not be modified after sending it (ie.class
ObjectMessage
AMessage
with an object as payload.
-