File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
namespace Soenneker . Utils . BackgroundQueue ;
15
15
16
16
/// <inheritdoc cref="IBackgroundQueue"/>
17
- public class BackgroundQueue : IBackgroundQueue
17
+ public sealed class BackgroundQueue : IBackgroundQueue
18
18
{
19
19
private readonly Channel < Func < CancellationToken , ValueTask > > _valueTaskChannel ;
20
20
private readonly Channel < Func < CancellationToken , Task > > _taskChannel ;
Original file line number Diff line number Diff line change 12
12
namespace Soenneker . Utils . BackgroundQueue ;
13
13
14
14
/// <inheritdoc cref="IQueuedHostedService"/>
15
- public class QueuedHostedService : BackgroundService , IQueuedHostedService
15
+ public sealed class QueuedHostedService : BackgroundService , IQueuedHostedService
16
16
{
17
17
private readonly IBackgroundQueue _queue ;
18
18
private readonly ILogger < QueuedHostedService > _logger ;
You can’t perform that action at this time.
0 commit comments