Package io.rong.imlib
Interface IConversationChannelListener.ConversationChannelTypingStatusListener
-
- All Implemented Interfaces:
public interface IConversationChannelListener.ConversationChannelTypingStatusListener
输入状态监听器,当输入状态发生变化时,会回调onTypingStatusChanged
-
-
Method Summary
Modifier and Type Method Description abstract void
onTypingStatusChanged(ConversationType type, String targetId, String channelId, Collection<TypingStatus> typingStatusSet)
会话输入状态发生变化。 对于单聊而言,当对方正在输入时,监听会触发一次;当对方不处于输入状态时,该监听还会触发一次,但回调里输入用户列表为空。 -
-
Method Detail
-
onTypingStatusChanged
abstract void onTypingStatusChanged(ConversationType type, String targetId, String channelId, Collection<TypingStatus> typingStatusSet)
会话输入状态发生变化。
对于单聊而言,当对方正在输入时,监听会触发一次;当对方不处于输入状态时,该监听还会触发一次,但回调里输入用户列表为空。
- Parameters:
type
- 会话类型targetId
- 会话 idchannelId
- 消息所属会话的业务标识。typingStatusSet
- 会话正在输入的 userList
-
-
-
-