wildfirechat / wfc_flutter_plugins

野火flutter插件,包含即时通讯和实时音视频插件
Other
35 stars 26 forks source link

发现监听的发送回执和已读事件并不执行,或者是我不知道什么时候会执行 #77

Closed moQingTing closed 9 months ago

moQingTing commented 9 months ago

发现监听的发送回执和已读事件并不执行,或者是我不知道什么时候会执行 _deliveryMessageSubscription = _eventBus.on().listen((event) { _handleMessageDelivery(event.deliveryMap); });

_readMessageSubscription = _eventBus.on<MessageReadedEvent>().listen((event) {
  _handleMessageRead(event.readedReports);
});

关于已读的处理,能否出一个demo给我?谢谢

imndx commented 9 months ago

你好,消息回执,需要专业版 im-server 才支持。

heavyrain2012 commented 9 months ago

专业版IM服务还需要在配置文件中打开

moQingTing commented 9 months ago

专业版IM服务还需要在配置文件中打开

谢谢告知