Browse Source

refactor.

master
yangxiaodong 7 years ago
parent
commit
9cdd4afafe
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/DotNetCore.CAP/Processor/IProcessor.PublishQueuer.cs

+ 5
- 5
src/DotNetCore.CAP/Processor/IProcessor.PublishQueuer.cs View File

@@ -12,11 +12,11 @@ namespace DotNetCore.CAP.Processor
{ {
public class PublishQueuer : IProcessor public class PublishQueuer : IProcessor
{ {
private ILogger _logger;
private CapOptions _options;
private IStateChanger _stateChanger;
private IServiceProvider _provider;
private TimeSpan _pollingDelay;
private readonly ILogger _logger;
private readonly CapOptions _options;
private readonly IStateChanger _stateChanger;
private readonly IServiceProvider _provider;
private readonly TimeSpan _pollingDelay;


public static readonly AutoResetEvent PulseEvent = new AutoResetEvent(true); public static readonly AutoResetEvent PulseEvent = new AutoResetEvent(true);




Loading…
Cancel
Save