Package org.teamapps.ux.component.chat
Class AbstractChatDisplayModel
- java.lang.Object
-
- org.teamapps.ux.component.chat.AbstractChatDisplayModel
-
- All Implemented Interfaces:
ChatDisplayModel
- Direct Known Subclasses:
InMemoryChatDisplayModel
public abstract class AbstractChatDisplayModel extends java.lang.Object implements ChatDisplayModel
-
-
Field Summary
Fields Modifier and Type Field Description Event<java.lang.Void>onAllDataChangedEvent<ChatMessageBatch>onMessagesAdded
-
Constructor Summary
Constructors Constructor Description AbstractChatDisplayModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event<java.lang.Void>onAllDataChanged()Event<ChatMessageBatch>onMessagesAdded()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.teamapps.ux.component.chat.ChatDisplayModel
getChatMessageById, getLastChatMessages, getPreviousMessages
-
-
-
-
Field Detail
-
onMessagesAdded
public final Event<ChatMessageBatch> onMessagesAdded
-
onAllDataChanged
public final Event<java.lang.Void> onAllDataChanged
-
-
Method Detail
-
onMessagesAdded
public Event<ChatMessageBatch> onMessagesAdded()
- Specified by:
onMessagesAddedin interfaceChatDisplayModel
-
onAllDataChanged
public Event<java.lang.Void> onAllDataChanged()
- Specified by:
onAllDataChangedin interfaceChatDisplayModel
-
-