会话置顶
SDK 提供设置会话是否置顶接口,置顶的状态将会被同步到服务端,切换设备后置顶状态也会一并同步下来。
设置会话置顶
方法
int changeConversationTopStatus(
RCIMConversationType type,
string targetId,
string channelId,
bool top
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
top | bool | 是 否置顶,true置顶,false,不置顶 |
代码示例
int code = engine.changeConversationTopStatus(
type,
targetId,
channelId,
top
);
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
回调方法
- onConversationTopStatusChanged
delegate void OnConversationTopStatusChangedDelegate(int code,
RCIMConversationType type,
string targetId,
string channelId,
bool top);
OnConversationTopStatusChangedDelegate onConversationTopStatusChanged;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMConversationType | 调用接口时传入的会话类型 |
targetId | string | 调用接口时传入的会话 ID |
channelId | string | 调用接口时传入的频道 ID |
top | bool | 置顶状态 |
代码示例
engine.onConversationTopStatusChanged = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
bool top
)
{
}
获取会话置顶状态
通过此方法获取指定会话的置顶状态。
方法
int loadConversationTopStatus(
RCIMConversationType type,
string targetId,
string channelId
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
代码示例
int code = engine.loadConversationTopStatus(
type,
targetId,
channelId
);
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
回调方法
- onConversationTopStatusLoaded
delegate void OnConversationTopStatusLoadedDelegate(int code,
RCIMConversationType type,
string targetId,
string channelId,
bool top);
OnConversationTopStatusLoadedDelegate onConversationTopStatusLoaded;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMConversationType | 调用接口时传入的会话类型 |
targetId | string | 调用接口时传入的会话 ID |
channelId | string | 调用接口时传入的频道 ID |
top | bool | 置顶状态 |
代码示例
engine.onConversationTopStatusLoaded = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
bool top
)
{
}
获取置顶会话列表
获取置顶会话列表