-
public class ReceivedMessageA representation of a message.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetId()The id for the message. abstract StringgetMessage()The message. abstract LonggetTimestamp()The timestamp associated for this message, measured in milliseconds since Unix epoch. abstract ParticipantgetFromParticipant()The participant this message belongs to. abstract Map<String, String>getAttributes()A map of user defined attributes that are associated with the message. -
-
Method Detail
-
getMessage
abstract String getMessage()
The message.
-
getTimestamp
abstract Long getTimestamp()
The timestamp associated for this message, measured in milliseconds since Unix epoch.
-
getFromParticipant
abstract Participant getFromParticipant()
The participant this message belongs to.
-
getAttributes
abstract Map<String, String> getAttributes()
A map of user defined attributes that are associated with the message.
-
-
-
-