Interface FlowableMessageReadEvent
-
- All Superinterfaces:
FlowableEngageEvent
,FlowableEvent
- All Known Implementing Classes:
FlowableMessageReadEventImpl
public interface FlowableMessageReadEvent extends FlowableEngageEvent
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getConversationId()
The id of the conversation in which the user is typingString
getMessageId()
The id of the message that was readDate
getMessageTimestamp()
The timestamp of the message that was read.String
getUserId()
The id of the user that is doing the typing-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEvent
getType
-
-
-
-
Method Detail
-
getUserId
String getUserId()
The id of the user that is doing the typing- Returns:
- the id of the user that is doing the typing
-
getConversationId
String getConversationId()
The id of the conversation in which the user is typing- Returns:
- the id of the conversation
-
getMessageId
String getMessageId()
The id of the message that was read- Returns:
- the id of the message that was read
-
getMessageTimestamp
Date getMessageTimestamp()
The timestamp of the message that was read. NOTE: This is not the timestamp of the read event, but the creation time of the message.- Returns:
- the message timestamp
-
-