15 lines
371 B
C#
15 lines
371 B
C#
#nullable enable
|
|
using System;
|
|
using Duplicati.Library.Utility;
|
|
using Duplicati.Server;
|
|
|
|
namespace Duplicati.Library.RestAPI.Abstractions;
|
|
|
|
public interface IWorkerThreadsManager
|
|
{
|
|
void Spawn(Action<Runner.IRunnerData> item);
|
|
|
|
Tuple<long, string>? CurrentTask { get; }
|
|
WorkerThread<Runner.IRunnerData>? WorkerThread { get; }
|
|
void UpdateThrottleSpeeds();
|
|
} |