It was previously located in the root, but placed correctly in the solution file.
17 lines
439 B
C#
17 lines
439 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();
|
|
|
|
long AddTask(Runner.IRunnerData data, bool skipQueue = false);
|
|
} |