using System.Threading.Channels; namespace EpsonPrintService; public interface IPrintJobSource { Task GetNextJobAsync(CancellationToken cancellationToken); }