- shit: Cleanup this mess

This commit is contained in:
2025-01-14 22:10:16 +03:00
parent a0b2cfd677
commit 08e518602b
71 changed files with 1022 additions and 943 deletions

View File

@@ -4,7 +4,7 @@ public interface ILoadingHandler
{
public void SetJobsCount(int count);
public int GetJobsCount();
public void SetResolvedJobsCount(int count);
public int GetResolvedJobsCount();
@@ -30,7 +30,7 @@ public interface ILoadingHandler
}
}
public sealed class QueryJob: IDisposable
public sealed class QueryJob : IDisposable
{
private readonly ILoadingHandler _handler;
@@ -39,7 +39,7 @@ public sealed class QueryJob: IDisposable
_handler = handler;
handler.AppendJob();
}
public void Dispose()
{
_handler.AppendResolvedJob();