12345678910111213141516171819202122 |
- namespace PaintDotNet.SystemLayer
- {
- public enum ExecuteWaitType
- {
- /// <summary>
- /// Returns immediately after executing without waiting for the task to finish.
- /// </summary>
- ReturnImmediately,
- /// <summary>
- /// Waits until the task exits before returning control to the calling method.
- /// </summary>
- WaitForExit,
- /// <summary>
- /// Returns immediately after executing without waiting for the task to finish.
- /// However, another task will be spawned that will wait for the requested task
- /// to finish, and it will then relaunch if the task was successful.
- /// </summary>
- RelaunchPdnOnExit
- }
- }
|