跳到主要内容

输入状态

发送输入状态消息

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

方法

int sendTypingStatus(
RCIMConversationType type,
string targetId,
string channelId,
string currentType
)

参数说明

参数类型说明
typeRCIMConversationType会话类型
targetIdstring会话 ID
channelIdstring频道 ID,仅支持超级群使用,其他会话类型传 null 即可
currentTypestring当前的状态

返回值

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

代码示例

int code = engine.sendTypingStatus(
type,
targetId,
channelId,
currentType
);

设置输入状态监听器

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

方法

delegate void OnTypingStatusChangedDelegate(
RCIMConversationType type,
string targetId,
string channelId,
List<RCIMTypingStatus> userTypingStatus);

OnTypingStatusChangedDelegate onTypingStatusChanged;

参数说明

参数类型说明
typeRCIMConversationType会话类型
targetIdstring会话ID
channelIdstring频道 ID
userTypingStatusList<[RCIMTypingStatus](https://www.rongcloud.cn/docs/api/unity/imlib_v5/latest/classcn__rongcloud__im__unity_1_1_r_c_i_m_typing_status.html)>输入状态列表

RCIMTypingStatus介绍

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

代码示例

engine.onTypingStatusChanged = delegate(
RCIMConversationType type,
string targetId,
string channelId,
List<RCIMTypingStatus> userTypingStatus
)
{

}