Package org.apache.catalina.tribes
Interface ChannelMessage
- All Superinterfaces:
- Cloneable,- Serializable
- All Known Implementing Classes:
- ChannelData
Message that is passed through the interceptor stack after the
 data serialized in the Channel object and then passed down to the
 interceptor and eventually down to the ChannelSender component
- 
Method SummaryModifier and TypeMethodDescriptionclone()Shallow clone, what gets cloned depends on the implementationDeep clone, all fields MUST get clonedGet the address that this message originated from.returns the byte buffer that contains the actual message payloadintThe message options is a 32 bit flag set that triggers interceptors and message behavior.longTimestamp of when the message was created.byte[]Each message must have a globally unique Id.voidsetAddress(Member member) Sets the source or reply-to address of this messagevoidsetMessage(XByteBuffer buf) The byte buffer that contains the actual message payloadvoidsetOptions(int options) sets the option bits for this messagevoidsetTimestamp(long timestamp) Sets the timestamp of this message.
- 
Method Details- 
getAddressMember getAddress()Get the address that this message originated from. Almost alwaysChannel.getLocalMember(boolean)
 This would be set to a different address if the message was being relayed from a host other than the one that originally sent it.- Returns:
- the source or reply-to address of this message
 
- 
setAddressSets the source or reply-to address of this message- Parameters:
- member- Member
 
- 
getTimestamplong getTimestamp()Timestamp of when the message was created.- Returns:
- long timestamp in milliseconds
 
- 
setTimestampvoid setTimestamp(long timestamp) Sets the timestamp of this message.- Parameters:
- timestamp- The timestamp
 
- 
getUniqueIdbyte[] getUniqueId()Each message must have a globally unique Id. interceptors heavily depend on this id for message processing- Returns:
- byte
 
- 
setMessageThe byte buffer that contains the actual message payload- Parameters:
- buf- XByteBuffer
 
- 
getMessageXByteBuffer getMessage()returns the byte buffer that contains the actual message payload- Returns:
- XByteBuffer
 
- 
getOptionsint getOptions()The message options is a 32 bit flag set that triggers interceptors and message behavior.- Returns:
- int - the option bits set for this message
- See Also:
 
- 
setOptionsvoid setOptions(int options) sets the option bits for this message- Parameters:
- options- int
- See Also:
 
- 
cloneObject clone()Shallow clone, what gets cloned depends on the implementation- Returns:
- ChannelMessage
 
- 
deepcloneObject deepclone()Deep clone, all fields MUST get cloned- Returns:
- ChannelMessage
 
 
-