Package io.rong.imlib
Interface RongIMClient.TypingStatusListener
-
- All Implemented Interfaces:
public interface RongIMClient.TypingStatusListenerTyping status listener that triggers a callback when the typing status changes.
-
-
Method Summary
Modifier and Type Method Description abstract voidonTypingStatusChanged(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 triggered again when they stop typing, but 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
-
-
-
-