10 lines
227 B
C#
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);
|
|
}
|