-
- All Implemented Interfaces:
public interface Message
-
-
Method Summary
Modifier and Type Method Description abstract StringgetId()Represents the unique identifier of the message. abstract voidsetId(String id)abstract DategetTimestamp()Represents the timestamp of the message. abstract voidsetTimestamp(Date timestamp)abstract Map<String, Object>getItems()Represents the extension key/values data of the message. abstract voidsetItems(Map<String, Object> items)voidmergeItems(Map<String, Object> data)Merge the givens key/values into the current Items. -
-
Method Detail
-
getTimestamp
abstract Date getTimestamp()
Represents the timestamp of the message.
-
setTimestamp
abstract void setTimestamp(Date timestamp)
-
getItems
abstract Map<String, Object> getItems()
Represents the extension key/values data of the message.
-
mergeItems
void mergeItems(Map<String, Object> data)
Merge the givens key/values into the current Items.
-
-
-
-