void ARRtmClient.getChannelAttributes ({
String channelId,
ResultCallback< List< RtmChannelAttribute >> resultCallback
});
flutter
查询某指定频道的全部属性。
- 你无需加入指定频道即可查询该频道的全部属性。
- getChannelAttributes 和 getChannelAttributesByKeys 一并计算在内:调用频率上限为每 5 秒 10 次。
参数
channelId
该指定频道的频道 ID。
resultCallback
- 方法调用成功:收到 onSuccess 回调和一个 RtmChannelAttribute 列表。
- 方法调用失败:收到 onFailure 回调。错误码详见 RtmProcessAttributeErrorCode。
Implementation
Future <void> ARRtmClient.getChannelAttributes{
String channelId
}