跳到主要内容

输入状态

发送输入状态消息

  1. 用户正在输入的时候,向对方发送正在输入的状态。
  2. 只支持单聊会话类型。

方法

sendTypingStatus(type: RCIMIWConversationType, targetId: string, channelId: string, currentType: string): Promise<number>;

参数说明

参数类型说明
typeRCIMIWConversationType会话类型
targetIdstring会话 ID
channelIdstring频道 ID,暂不支持该参数。传 null 即可。
currentTypestring当前的状态

返回值

返回值描述
Promise<number>当次接口操作状态码,并不代表最终操作结果,状态码详细信息

代码示例

engine.sendTypingStatus(
type,
targetId,
channelId,
currentType
)
.then((code: number) => {});

设置输入状态监听器

触发时机:当前会话正在输入的用户有变化时

方法

setOnTypingStatusChangedListener(listener?: (type: RCIMIWConversationType, targetId: string, channelId: string, userTypingStatus: Array<RCIMIWTypingStatus>) => void): void;

参数说明

参数类型说明
typeRCIMIWConversationType会话类型
targetIdstring会话ID
channelIdstring频道 ID
userTypingStatusArray<[RCIMIWTypingStatus](https://www.rongcloud.cn/docs/api/react-native/imlib_v5/latest/interfaces/RCIMDefines.RCIMIWTypingStatus.html)>输入状态列表

RCIMIWTypingStatus介绍

属性名称类型说明
userIdstring用户ID
contentTypestring正在输入的消息的类型名。如文本消息,应该传类型名"RC:TxtMsg"
sentTimenumber发送时间

代码示例

engine.setOnTypingStatusChangedListener(
(
type: RCIMIWConversationType,
targetId: string,
channelId: string,
userTypingStatus: Array<RCIMIWTypingStatus>
) => {}
);