Tasks are broken down into major and minor tasks. Major tasks are like install game, redistributable, or tool. These are reported as individual tasks in the download queue. Minor tasks are running of a script, downloading saves, extracting/downloading, etc.
12 lines
185 B
C#
12 lines
185 B
C#
namespace LANCommander.SDK.Enums
|
|
{
|
|
public enum InstallTaskStatus
|
|
{
|
|
Queued,
|
|
Running,
|
|
Completed,
|
|
Failed,
|
|
Skipped,
|
|
Canceled
|
|
}
|
|
}
|