OnTypingStarted and OnTypingEnded — plus methods to send typing state from the local user.
Send Typing Indicators
UseStartTyping and EndTyping on the Subsystem to notify other users that the local user is composing a message.
- Blueprint
- C++
- Get a reference to the CometChat Subsystem
- Create an
FCometChatTypingIndicatorstruct with the receiver info - Call Start Typing when the user begins typing
- Call End Typing when the user stops (or after a timeout)
Listen for Typing Events
Bind toOnTypingStarted and OnTypingEnded delegates on the Subsystem to receive typing notifications from other users.
- Blueprint
- C++
- Get a reference to the CometChat Subsystem
- Drag off and search for On Typing Started / On Typing Ended
- Use Bind Event to connect each to a custom event
- The custom event receives an
FCometChatTypingIndicatorparameter
FCometChatTypingIndicator
Event Flow
Next Steps
Delivery & Read Receipts
Track when messages are delivered and read.
Real-Time Events
See all 40+ real-time delegates available.