Package io.rong.imlib
Interface IRongCoreListener.TypingStatusListener
-
- All Implemented Interfaces:
public interface IRongCoreListener.TypingStatusListener
Input status listener that triggers a callback when the input status changes onTypingStatusChanged
-
-
Method Summary
Modifier and Type Method Description abstract void
onTypingStatusChanged(ConversationType type, String targetId, Collection<TypingStatus> typingStatusSet)
The typing status of the conversation has changed. -
-
Method Detail
-
onTypingStatusChanged
abstract void onTypingStatusChanged(ConversationType type, String targetId, Collection<TypingStatus> typingStatusSet)
The typing status of the conversation has changed.
For one-to-one chats, this event is triggered once when the other party is typing, and once again when they stop typing. In the latter case, the user list in the callback will be empty.
- Parameters:
type
- The type of the conversationtargetId
- The ID of the conversationtypingStatusSet
- The list of users currently typing in the conversation
-
-
-
-