refactor Queue namespace
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace Inspectron.Epson.PrintServer;
|
||||
using Inspectron.Epson.Queue;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer;
|
||||
|
||||
public interface IPrintJobSource
|
||||
{
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Channels;
|
||||
using Inspectron.Epson.PrintServer.ConfigurationSources;
|
||||
using Inspectron.Epson.Queue;
|
||||
using Microsoft.AspNetCore.SignalR.Client;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Threading.Channels;
|
||||
using Inspectron.Epson.Queue;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer.JobSources;
|
||||
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
using Inspectron.Epson.PrintServer.PrintServices;
|
||||
using Inspectron.Epson.Queue;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer;
|
||||
|
||||
public class PrintLoop
|
||||
{
|
||||
private readonly global::PrintServer _printServer;
|
||||
private readonly global::Inspectron.Epson.Queue.PrintServer _printServer;
|
||||
private readonly IPrintService _printService;
|
||||
private readonly IPrintJobSource _jobSource;
|
||||
|
||||
@@ -13,7 +14,7 @@ public class PrintLoop
|
||||
private CancellationTokenSource? _cancellationSource;
|
||||
private CancellationToken _cancellationToken;
|
||||
|
||||
public PrintLoop(global::PrintServer printServer,IPrintService printService, IPrintJobSource jobSource, ILogger logger)
|
||||
public PrintLoop(global::Inspectron.Epson.Queue.PrintServer printServer,IPrintService printService, IPrintJobSource jobSource, ILogger logger)
|
||||
{
|
||||
_printServer = printServer;
|
||||
_printService = printService;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Inspectron.Epson.PrintServer.Printers;
|
||||
using Inspectron.Epson.PrintServer.Printers.Utils;
|
||||
using Inspectron.Epson.Queue;
|
||||
|
||||
namespace Inspectron.Epson.PrintServer.PrintServices;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user