initGroupAttributes method
这个接口移到messageManager下面去了,2020-6-4 修改群消息接收选项
参数
opt 三种类型的消息接收选项: ReceiveMsgOptEnum.V2TIM_GROUP_RECEIVE_MESSAGE:在线正常接收消息,离线时会有厂商的离线推送通知 ReceiveMsgOptEnum.V2TIM_GROUP_NOT_RECEIVE_MESSAGE:不会接收到群消息 ReceiveMsgOptEnum.V2TIM_GROUP_RECEIVE_NOT_NOTIFY_MESSAGE:在线正常接收消息,离线不会有推送通知
初始化群属性,会清空原有的群属性列表
注意
attributes 的使用限制如下:
1、目前只支持 AVChatRoom
2、key 最多支持16个,长度限制为32字节
3、value 长度限制为4k
4、总的 attributes(包括 key 和 value)限制为16k
5、initGroupAttributes、setGroupAttributes、deleteGroupAttributes 接口合并计算, SDK 限制为5秒10次,超过后回调8511错误码;后台限制1秒5次,超过后返回10049错误码
6、getGroupAttributes 接口 SDK 限制5秒20次
Implementation
// Future<V2TimCallback> setReceiveMessageOpt({
// required String groupID,
// required int opt,
// }) async {
// return V2TimCallback.fromJson(
// formatJson(
// await _channel.invokeMethod(
// "setReceiveMessageOpt",
// buildParam(
// {
// "groupID": groupID,
// "opt": opt,
// },
// ),
// ),
// ),
// );
// }
/// 初始化群属性,会清空原有的群属性列表
///
/// 注意
///
/// attributes 的使用限制如下:
///
/// ```
/// 1、目前只支持 AVChatRoom
/// 2、key 最多支持16个,长度限制为32字节
/// 3、value 长度限制为4k
/// 4、总的 attributes(包括 key 和 value)限制为16k
/// 5、initGroupAttributes、setGroupAttributes、deleteGroupAttributes 接口合并计算, SDK 限制为5秒10次,超过后回调8511错误码;后台限制1秒5次,超过后返回10049错误码
/// 6、getGroupAttributes 接口 SDK 限制5秒20次
/// ```
Future<V2TimCallback> initGroupAttributes({
required String groupID,
required Map<String, String> attributes,
}) async {
return ImFlutterPlatform.instance
.initGroupAttributes(groupID: groupID, attributes: attributes);
}