Files
Print_server/EpsonPrintService/IPrintJobSource.cs
2026-01-13 09:06:47 +01:00

8 lines
176 B
C#

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