doc/Admin.md: add eventqueue command

This commit is contained in:
Pragmatic Software 2020-03-08 16:26:05 -07:00
parent 81762b8d49
commit 56d185aa1f
1 changed files with 17 additions and 0 deletions

View File

@ -56,6 +56,8 @@
* [cmdset](#cmdset)
* [cmdunset](#cmdunset)
* [Command metadata list](#command-metadata-list)
* [Event queue commands](#event-queue-commands)
* [eventqueue](#eventqueue)
* [Process management commands](#process-management-commands)
* [ps](#ps)
* [kill](#kill)
@ -542,6 +544,21 @@ Name | Description
`background-process` | When set to a true value then this command will be executed as a background process. Use this for commands that can potentially take a long time to complete.
`process-timeout` | The timeout, in seconds, before the process is automatically killed. If not set then the `processmanager.default_timeout` [registry](Registry.md) value will be used.
## Event queue commands
### eventqueue
Manages the PBot event queue. Can be used to add commands that run at a future time.
Usage: `eventqueue list [filter regex] | add <relative time> <command> | delete <regex>
For example, to schedule a command to run 10 seconds from now:
<pragma-> eventqueue add "10 seconds" echo Ta-da!
<PBot> Command added to event queue.
10 seconds later ...
<PBot> Ta-da!
## Process management commands
### ps
Lists all currently running background processes.