输入状态
发送输入状态消息
- 用户正在输入的时候,向对方发送正在输入的状态。
- 只支持单聊会话类型。
方法
sendTypingStatus(type: RCIMIWConversationType, targetId: string, channelId: string, currentType: string): Promise<number>;
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMIWConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,暂不支持该参数。传 null 即可。 |
currentType | string | 当前的状态 |
返回值
返回值 | 描述 |
---|---|
Promise<number> | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
engine.sendTypingStatus(
type,
targetId,
channelId,
currentType
)
.then((code: number) => {});
设置输入状态监听器
触发时机:当前会话正在输入的用户有变化时
方法
setOnTypingStatusChangedListener(listener?: (type: RCIMIWConversationType, targetId: string, channelId: string, userTypingStatus: Array<RCIMIWTypingStatus>) => void): void;
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMIWConversationType | 会话类型 |
targetId | string | 会话ID |
channelId | string | 频道 ID |
userTypingStatus | Array<[RCIMIWTypingStatus](https://www.rongcloud.cn/docs/api/react-native/imlib_v5/latest/interfaces/RCIMDefines.RCIMIWTypingStatus.html)> | 输入状态列表 |
RCIMIWTypingStatus介绍
属性名称 | 类型 | 说明 |
---|---|---|
userId | string | 用户ID |
contentType | string | 正在输入的消息的类型名。如文本消息,应该传类型名"RC:TxtMsg" |
sentTime | number | 发送时间 |
代码示例
engine.setOnTypingStatusChangedListener(
(
type: RCIMIWConversationType,
targetId: string,
channelId: string,
userTypingStatus: Array<RCIMIWTypingStatus>
) => {}
);