mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
7 lines
305 B
C#
7 lines
305 B
C#
namespace splitter;
|
|
|
|
public interface IJobProcessor
|
|
{
|
|
Task<List<SingleTask>> GenerateJobs(SingleJob job, bool estimateOnly, IReadOnlyCollection<Segment> predefinedSegments, CancellationToken token);
|
|
Task<bool> ProcessJobs(List<SingleTask> tasks, bool singleThreaded, CancellationToken token);
|
|
} |