输入状态
发送输入状态消息
- 用户正在输入的时候,向对方发送正在输入的状态。
- 只支持单聊会话类型。
方法
int sendTypingStatus(
RCIMConversationType type,
string targetId,
string channelId,
string currentType
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
currentType | string | 当前的状态 |
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
int code = engine.sendTypingStatus(
type,
targetId,
channelId,
currentType
);
设置输入状态监听器
触发时机:当前会话正在输入的用户有变化时
方法
delegate void OnTypingStatusChangedDelegate(
RCIMConversationType type,
string targetId,
string channelId,
List<RCIMTypingStatus> userTypingStatus);
OnTypingStatusChangedDelegate onTypingStatusChanged;
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话ID |
channelId | string | 频道 ID |
userTypingStatus | List<[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介绍
属性名称 | 类型 | 说明 |
---|---|---|
userId | string | 用户ID |
contentType | string | 正在输入的消息的类型名。如文本消息,应该传类型名"RC:TxtMsg" |
sentTime | int | 发送时间 |
代码示例
engine.onTypingStatusChanged = delegate(
RCIMConversationType type,
string targetId,
string channelId,
List<RCIMTypingStatus> userTypingStatus
)
{
}