glax
e883277400
Added TrangaTask.Clone() method Rewrote TrangaTask.progress for the billionth+1 time. Removed Increment and DecrementProgress methods Removed TrangaTask.ReplaceFailedChildTask method Changed return type of TrangaTask.ExecuteTask to bool, signifying success. Added Failed Execution state to TrangaTask Replaced taskManager failed-task logic Removed TaskManager bulky AddTask and DeleteTask methods Removed TaskManager bulky Constructor
29 lines
750 B
C#
29 lines
750 B
C#
using Logging;
|
|
|
|
namespace Tranga.TrangaTasks;
|
|
|
|
public class UpdateLibrariesTask : TrangaTask
|
|
{
|
|
public UpdateLibrariesTask(TimeSpan reoccurrence) : base(Task.UpdateLibraries, reoccurrence)
|
|
{
|
|
}
|
|
|
|
protected override bool ExecuteTask(TaskManager taskManager, Logger? logger, CancellationToken? cancellationToken = null)
|
|
{
|
|
if (cancellationToken?.IsCancellationRequested??false)
|
|
return false;
|
|
foreach(LibraryManager lm in taskManager.settings.libraryManagers)
|
|
lm.UpdateLibrary();
|
|
return true;
|
|
}
|
|
|
|
public override TrangaTask Clone()
|
|
{
|
|
return new UpdateLibrariesTask(this.reoccurrence);
|
|
}
|
|
|
|
protected override double GetProgress()
|
|
{
|
|
return 1;
|
|
}
|
|
} |