This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
src/ServiceLayer.Mesh/Messaging Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 11using Azure . Storage . Queues ;
2- using Microsoft . Extensions . Logging ;
32using ServiceLayer . Data . Models ;
43using ServiceLayer . Mesh . Configuration ;
54
65namespace ServiceLayer . Mesh . Messaging ;
76
87public class FileExtractQueueClient (
9- ILogger < FileExtractQueueClient > logger ,
108 IFileExtractQueueClientConfiguration configuration ,
119 QueueServiceClient queueServiceClient )
12- : QueueClientBase ( logger , queueServiceClient ) , IFileExtractQueueClient
10+ : QueueClientBase ( queueServiceClient ) , IFileExtractQueueClient
1311{
1412 public async Task EnqueueFileExtractAsync ( MeshFile file )
1513 {
Original file line number Diff line number Diff line change 11using Azure . Storage . Queues ;
2- using Microsoft . Extensions . Logging ;
32using ServiceLayer . Data . Models ;
43using ServiceLayer . Mesh . Configuration ;
54
65namespace ServiceLayer . Mesh . Messaging ;
76
87public class FileTransformQueueClient (
9- ILogger < FileTransformQueueClient > logger ,
108 IFileTransformQueueClientConfiguration configuration ,
119 QueueServiceClient queueServiceClient )
12- : QueueClientBase ( logger , queueServiceClient ) , IFileTransformQueueClient
10+ : QueueClientBase ( queueServiceClient ) , IFileTransformQueueClient
1311{
1412 public async Task EnqueueFileTransformAsync ( MeshFile file )
1513 {
You can’t perform that action at this time.
0 commit comments