You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Discord.Commands
- {
- public enum RunMode
- {
- /// <summary>
- /// The default behaviour set in <see cref="CommandServiceConfig"/>.
- /// </summary>
- Default,
- /// <summary>
- /// Executes the command on the same thread as gateway one.
- /// </summary>
- Sync,
- /// <summary>
- /// Executes the command on a different thread from the gateway one.
- /// </summary>
- Async
- }
- }
|