controller benefit

This commit is contained in:
Skillz4Killz
2021-02-15 16:48:03 +00:00
committed by GitHub
parent fb127dabc7
commit 3c99e8d740

View File

@@ -21,3 +21,5 @@ This WS service is meant for ADVANCED DEVELOPERS ONLY!
- **No Loss Restarts**:
- When you restart a bot without the proxy system, normally you would lose many events. Users may be using commands or messages are sent that will not be filtered. As your bot's grow this number rises dramatically. Users may join who wont get the auto-roles or any other actions your bot should take. With the proxy system, you can keep restarting your bot and never lose any events. Events will be put into a queue while your bot is down(max size of queue is customizable), once the bot is available the queue will begin processing all events.
- **Controllers**:
- The controller aspect gives you full control over everything inside the proxy. You can provide a function to simply override the handler. For example, if you would like a certain function to do something different, instead of having to fork and maintain your fork, you can just provide a function to override.