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.Interactions
- {
- /// <summary>
- /// Specifies the behavior of the command execution workflow.
- /// </summary>
- /// <seealso cref="InteractionServiceConfig"/>
- public enum RunMode
- {
- /// <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,
- /// <summary>
- /// The default behaviour set in <see cref="InteractionServiceConfig"/>.
- /// </summary>
- Default
- }
- }
|