Fixed many warnings, moved some classes to their own files.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace LightlessSync.Services.PairProcessing;
|
||||
|
||||
[StructLayout(LayoutKind.Auto)]
|
||||
public readonly record struct PairProcessingLimiterSnapshot(bool IsEnabled, int Limit, int InFlight, int Waiting)
|
||||
{
|
||||
public int Remaining => Math.Max(0, Limit - InFlight);
|
||||
}
|
||||
Reference in New Issue
Block a user