Commit 9cdd4afa authored by yangxiaodong's avatar yangxiaodong

refactor.

parent 34e90105
...@@ -12,11 +12,11 @@ namespace DotNetCore.CAP.Processor ...@@ -12,11 +12,11 @@ namespace DotNetCore.CAP.Processor
{ {
public class PublishQueuer : IProcessor public class PublishQueuer : IProcessor
{ {
private ILogger _logger; private readonly ILogger _logger;
private CapOptions _options; private readonly CapOptions _options;
private IStateChanger _stateChanger; private readonly IStateChanger _stateChanger;
private IServiceProvider _provider; private readonly IServiceProvider _provider;
private TimeSpan _pollingDelay; private readonly TimeSpan _pollingDelay;
public static readonly AutoResetEvent PulseEvent = new AutoResetEvent(true); public static readonly AutoResetEvent PulseEvent = new AutoResetEvent(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment