mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
7 lines
135 B
C#
7 lines
135 B
C#
namespace splitter.algo;
|
|
|
|
public interface ISegmentProcessor
|
|
{
|
|
Task ProcessSegment( SingleTask job, CancellationToken token);
|
|
}
|