Files
git.stella-ops.org/src/Scanner/StellaOps.Scanner.Worker/Processing/IScanJobSource.cs
2025-10-28 15:10:40 +02:00

10 lines
227 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Scanner.Worker.Processing;
public interface IScanJobSource
{
Task<IScanJobLease?> TryAcquireAsync(CancellationToken cancellationToken);
}