We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前每个模块独自订阅并处理事件, 导致同时启用多个模块后重复处理事件
如启用WebSockets Server和HTTP上报服务后, 事件广播后BotEvent.toCQDTO.toJson()以及EventFilter.eval()会被调用两次
WebSockets Server
HTTP
BotEvent.toCQDTO.toJson()
EventFilter.eval()
考虑在插件入口订阅一次来自mirai的事件, 处理完成后通过自建事件分发广播给各个模块
mirai
The text was updated successfully, but these errors were encountered:
939d126
No branches or pull requests
目前每个模块独自订阅并处理事件, 导致同时启用多个模块后重复处理事件
如启用
WebSockets Server
和HTTP
上报服务后, 事件广播后BotEvent.toCQDTO.toJson()
以及EventFilter.eval()
会被调用两次考虑在插件入口订阅一次来自
mirai
的事件, 处理完成后通过自建事件分发广播给各个模块The text was updated successfully, but these errors were encountered: