Co-authored-by: defnotken <itsdefnotken@gmail.com> Co-authored-by: cake <admin@cakeandbanana.nl> Reviewed-on: #88 Reviewed-by: cake <cake@noreply.git.lightless-sync.org> Co-authored-by: defnotken <defnotken@noreply.git.lightless-sync.org> Co-committed-by: defnotken <defnotken@noreply.git.lightless-sync.org>
10 lines
298 B
C#
10 lines
298 B
C#
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);
|
|
}
|