-
Notifications
You must be signed in to change notification settings - Fork 0
messageFlow
int16 edited this page Feb 13, 2025
·
1 revision
This document explains how gonebot works overall.
flowchart TD
subgraph CacheChan
direction LR
incoming
result
end
subgraph GonePlugins
direction TB
subgraph GoneHandler
direction TB
Matcher -- "if matched" --> Handler
end
ActiveHandlers
end
Adapter -- "incoming msgs" --> incoming
incoming --> Matcher
Handler --> result
ActiveHandlers --> result
result -- "result msgs" --> Adapter
The two channels work as message cache, in order to handle with sudden load.