wabbajack/Wabbajack.RateLimiter/Job.cs
2021-09-27 06:42:46 -06:00

33 lines
918 B
C#

using System;
using System.Buffers;
using System.Threading;
using System.Threading.Tasks;
namespace Wabbajack.RateLimiter
{
public class Job<T> : IJob, IDisposable
{
public ulong ID { get; internal init; }
public string Description { get; internal init; }
public long Current { get; internal set; }
public long? Size { get; set; }
public bool Started { get; internal set; }
public IResource<T> Resource { get; init; }
public async ValueTask Report(int processedSize, CancellationToken token)
{
await Resource.Report(this, processedSize, token);
Current += processedSize;
}
public void ReportNoWait(int processedSize)
{
Resource.ReportNoWait(this, processedSize);
}
public void Dispose()
{
Resource.Finish(this);
}
}
}