Package io.rong.imlib
Interface IConversationChannelListener.ConversationChannelTypingStatusListener
-
- All Implemented Interfaces:
public interface IConversationChannelListener.ConversationChannelTypingStatusListener
Input status listener that triggers a callback when the typing status changes. The callback is onTypingStatusChanged
-
-
Method Summary
Modifier and Type Method Description abstract void
onTypingStatusChanged(ConversationType type, String targetId, String channelId, Collection<TypingStatus> typingStatusSet)
The typing status of the conversation has changed. -
-
Method Detail
-
onTypingStatusChanged
abstract void onTypingStatusChanged(ConversationType type, String targetId, String channelId, Collection<TypingStatus> typingStatusSet)
The typing status of the conversation has changed.
For one-to-one chats, this listener is triggered once when the other party is typing, and again when they stop typing. In the latter case, the callback will return an empty user list.
- Parameters:
type
- Conversation typetargetId
- Conversation IDchannelId
- Business identifier of the conversation to which the message belongs.typingStatusSet
- List of users currently typing in the conversation
-
-
-
-