using System.Threading.Channels; using Inspectron.Epson.PrintServer; namespace ConfigurationPannel.Services; public class NoOpPrintJobSource : IPrintJobSource { private readonly Channel _channel = Channel.CreateUnbounded(); public Task GetNextJobAsync(CancellationToken cancellationToken) { // Blocks indefinitely, keeping PrintLoop alive without processing jobs // This stub implementation keeps the loop running but never provides actual jobs return _channel.Reader.ReadAsync(cancellationToken).AsTask(); } }