Changed GetDimensions to handle a stream at the end and one exit Switched to using Action? over IDlibDotNet for Tick method Switched to using AsReadOnly over new() Moved Meta Base to Shared
12 lines
346 B
C#
12 lines
346 B
C#
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
|
|
|
public interface IDlibDotNet
|
|
{
|
|
|
|
void Tick();
|
|
long Ticks { get; }
|
|
(string, string) GetResultsFullGroupDirectories();
|
|
void ConstructProgressBar(int maxTicks, string message);
|
|
(string, string, string, string) GetResultsFullGroupDirectories(string outputResolution);
|
|
|
|
} |