34 lines
964 B
C#
34 lines
964 B
C#
#nullable enable
|
|
using System;
|
|
using Duplicati.Library.IO;
|
|
using Duplicati.Library.RestAPI.Abstractions;
|
|
using Duplicati.Library.Utility;
|
|
using Duplicati.Server;
|
|
using Duplicati.WebserverCore.Abstractions;
|
|
|
|
namespace Duplicati.Library.RestAPI;
|
|
|
|
public class WorkerThreadsManager(ILiveControls liveControls, IScheduler scheduler) : IWorkerThreadsManager
|
|
{
|
|
public WorkerThread<Runner.IRunnerData>? WorkerThread { get; private set; }
|
|
|
|
public void Spawn(Action<Runner.IRunnerData> item)
|
|
{
|
|
WorkerThread = new WorkerThread<Runner.IRunnerData>(item, liveControls.IsPaused);
|
|
scheduler.Init(WorkerThread);
|
|
}
|
|
|
|
public Tuple<long, string>? CurrentTask
|
|
{
|
|
get
|
|
{
|
|
var t = WorkerThread?.CurrentTask;
|
|
return t == null ? null : new Tuple<long, string>(t.TaskID, t.Backup.ID);
|
|
}
|
|
}
|
|
|
|
public void UpdateThrottleSpeeds()
|
|
{
|
|
WorkerThread?.CurrentTask?.UpdateThrottleSpeed();
|
|
}
|
|
} |