8 lines
176 B
C#
8 lines
176 B
C#
using System.Threading.Channels;
|
|
|
|
namespace EpsonPrintService;
|
|
|
|
public interface IPrintJobSource
|
|
{
|
|
Task<PrintJob> GetNextJobAsync(CancellationToken cancellationToken);
|
|
} |